summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-snapshot-list/rbd-snapshot.model.ts
blob: 06fd28783ee969080adb6428cde91967640d2e92 (plain)
1
2
3
4
5
6
7
8
9
export class RbdSnapshotModel {
  id: number;
  name: string;
  size: number;
  timestamp: string;
  is_protected: boolean;

  cdExecuting: string;
}