@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (12 loc) • 358 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
export class ReleaseItem {
public constructor(
public readonly name: string,
public readonly namespace: string,
public readonly revision: string,
public readonly updated: string,
public readonly status: string,
public readonly chart: string,
public readonly app_version: string,
) {}
}