New Angular UI from 1806
[vid.git] / vid-webpack-master / src / app / shared / models / aicZone.ts
1 export class AicZone {
2   id: string;
3   name: string;
4
5   constructor(serviceJson){
6     this.id = serviceJson["zone-id"];
7     this.name = serviceJson["zone-name"];
8   }
9 }