@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (12 loc) • 354 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
export class ChartMetadata {
/**
* Creates a new ChartMetadata instance.
* @param version The version of the chart
* @param appVersion The version of the application contained in the chart
*/
public constructor(
public readonly version: string,
public readonly appVersion: string,
) {}
}