sc-portal/app/src/app/machines/models/snapshot.ts

10 lines
129 B
TypeScript
Raw Normal View History

2021-04-07 14:26:28 +03:00
export class Snapshot
{
name: string;
created: Date;
updated: Date;
size: number;
state: string;
working: boolean;
}