re base code
[sdc.git] / catalog-ui / src / app / ng2 / services / responses / automated-upgrade-response.ts
1 /**
2  * Created by ob0695 on 4/29/2018.
3  */
4
5 export class AutomatedUpgradeStatusResponse {
6     name:string;
7     status:string;
8     uniqueId:string;
9     version:string;
10 }
11
12 export class AutomatedUpgradeGenericResponse {
13     error:string;
14     status:string;
15     componentToUpgradeStatus:Array<AutomatedUpgradeStatusResponse>;
16 }