blob: afa8a8136ac23a0e8653fbd1cc7208b0cc4f1776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
export class InstantiationBase {
readonly jobId: string;
readonly serviceModelId: string;
constructor(data?) {
if(data){
this.jobId = data.jobId;
this.serviceModelId = data.serviceModelId;
}
}
}
|