Software model

This commit is contained in:
ziajka 2019-01-14 14:55:18 +01:00
parent 6527554aa3
commit 366ed96f28

View 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;
}