Managed to insert an ISO file

This commit is contained in:
2023-10-19 18:12:24 +02:00
parent b007826710
commit d93a2b857a
5 changed files with 180 additions and 6 deletions

View File

@ -27,6 +27,7 @@ interface VMInfoInterface {
architecture: "i686" | "x86_64";
memory: number;
vnc_access: boolean;
iso_file?: string;
}
export class VMInfo implements VMInfoInterface {
@ -39,6 +40,7 @@ export class VMInfo implements VMInfoInterface {
architecture: "i686" | "x86_64";
memory: number;
vnc_access: boolean;
iso_file?: string;
constructor(int: VMInfoInterface) {
this.name = int.name;
@ -50,6 +52,7 @@ export class VMInfo implements VMInfoInterface {
this.architecture = int.architecture;
this.memory = int.memory;
this.vnc_access = int.vnc_access;
this.iso_file = int.iso_file;
}
static NewEmpty(): VMInfo {