blob: fe82a3eea8deb13ffdd1dd15b21dba4b719190ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export class LcpRegion {
id: string;
name: string;
isPermitted: boolean;
cloudOwner: string;
constructor(id: string, name: string, isPermitted: boolean, cloudOwner: string) {
this.id = id;
this.name = name;
this.isPermitted = isPermitted;
this.cloudOwner = cloudOwner;
}
}
|