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

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