mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-18 23:08:14 +00:00
Software model
This commit is contained in:
12
src/app/models/software.ts
Normal file
12
src/app/models/software.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
export type SoftwareType = "web";
|
||||||
|
|
||||||
|
export class Software {
|
||||||
|
name: string;
|
||||||
|
locations: string[];
|
||||||
|
type: SoftwareType;
|
||||||
|
resource: string;
|
||||||
|
binary: string;
|
||||||
|
sudo: boolean;
|
||||||
|
installation_arguments: string[];
|
||||||
|
installed: boolean;
|
||||||
|
}
|
Reference in New Issue
Block a user