Load template button in new template modal
[vid.git] / vid-webpack-master / src / app / shared / models / serviceBase.ts
1 export class InstantiationBase {
2   readonly jobId: string;
3   readonly serviceModelId: string;
4
5   constructor(data) {
6     this.jobId = data.jobId;
7     this.serviceModelId = data.serviceModelId;
8   }
9 }