diff --git a/src/app/models/software.ts b/src/app/models/software.ts new file mode 100644 index 00000000..6b294480 --- /dev/null +++ b/src/app/models/software.ts @@ -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; +} \ No newline at end of file