New Angular UI from 1806
[vid.git] / vid-webpack-master / src / app / shared / models / productFamily.ts
1 import {ServiceResponseInterface} from "../../services/aaiService/responseInterfaces/getServicesResponseInterface";
2
3 export class ProductFamily {
4   id: string;
5   name: string;
6   isPermitted: boolean;
7
8   constructor(serviceResponse: ServiceResponseInterface){
9     this.id = serviceResponse['service-id'];
10     this.name = serviceResponse["service-description"];
11     this.isPermitted = serviceResponse["is-permitted"];
12   }
13 }