sc-portal/app/src/app/machines/models/machine-volume.ts

8 lines
156 B
TypeScript
Raw Normal View History

export class MachineVolume
2021-04-07 14:26:28 +03:00
{
name: string;
type: string; // "tritonnfs"
mode: string; // "ro" / "rw"
mountpoint: string; // must start with a "/"
}