@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
20 lines • 514 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
export class ReleaseItem {
name;
namespace;
revision;
updated;
status;
chart;
app_version;
constructor(name, namespace, revision, updated, status, chart, app_version) {
this.name = name;
this.namespace = namespace;
this.revision = revision;
this.updated = updated;
this.status = status;
this.chart = chart;
this.app_version = app_version;
}
}
//# sourceMappingURL=release-item.js.map