aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/tenant.ts
blob: 234f1dbffe2ac7dd7ac369ef8ac8dd130d8481fe (plain)
1
2
3
4
5
6
7
8
9
10
11
export class Tenant {
  id: string;
  name: string;
  isPermitted: boolean;

  constructor(serviceJson){
    this.id = serviceJson["tenantID"];
    this.name = serviceJson["tenantName"];
    this.isPermitted = serviceJson["is-permitted"];
  }
}