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; } }