VID - Feature flag for PNF in modern UI
[vid.git] / vid-webpack-master / src / app / shared / models / lcpRegion.ts
1 export class LcpRegion {
2   id: string;
3   name: string;
4   isPermitted: boolean;
5   cloudOwner: string;
6
7   constructor(id: string, name: string, isPermitted: boolean, cloudOwner: string) {
8     this.id = id;
9     this.name = name;
10     this.isPermitted = isPermitted;
11     this.cloudOwner = cloudOwner;
12   }
13 }