nuvira/types/VM.ts
2025-02-26 09:38:06 +01:00

8 lines
153 B
TypeScript

export interface VM {
name: string;
os: string;
vCpuCount: number;
maxMemory: number;
autostart: boolean;
state: "on" | "off";
}