blob: a5989e471844c586b06ea13d9a64e5e7e16fa9d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* Created by ob0695 on 10.04.2018.
*/
export interface IUiBaseObject {
name:string;
uniqueId:string;
type:any;
}
export class UiBaseObject implements IUiBaseObject{
name:string;
uniqueId:string;
type:any;
constructor(uniqueId: string, type?: any, name?:string) {
this.uniqueId = uniqueId;
this.name = name;
this.type = type;
}
}
|