@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
18 lines (13 loc) • 403 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {Exclude, Expose} from 'class-transformer';
()
export class DeploymentHistorySchema {
()
public commands: string[];
()
public lastExecutedCommand: string;
public constructor(commands?: string[], lastExecutedCommand?: string) {
this.commands = commands || [];
this.lastExecutedCommand = lastExecutedCommand;
}
}