blob: 79f6e07d43455543b3267858f80dbcad8f0c00ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import {LcpRegion} from "./lcpRegion";
import {Tenant} from "./tenant";
export class LcpRegionsAndTenants {
lcpRegionList: LcpRegion[];
lcpRegionsTenantsMap: { [lcpRegion: string] : Tenant[]; };
constructor(lcpRegionList: LcpRegion[] = [], lcpRegionsTenantsMap: any = {}) {
this.lcpRegionList = lcpRegionList;
this.lcpRegionsTenantsMap = lcpRegionsTenantsMap;
}
}
|