merge from ecomp a88f0072 - Modern UI
[vid.git] / vid-webpack-master / src / app / shared / models / tenant.ts
1 export class Tenant {
2   id: string;
3   name: string;
4   isPermitted: boolean;
5   cloudOwner: string;
6
7   constructor(serviceJson){
8     this.id = serviceJson["tenantID"];
9     this.name = serviceJson["tenantName"];
10     this.isPermitted = serviceJson["is-permitted"];
11     this.cloudOwner = serviceJson["cloudOwner"];
12   }
13 }