blob: 6d7854a6bf74739e82a20fe9fb0e64afaa09a1a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
import {PropertyBEModel} from 'app/models';
/**
* Created by rc2122 on 6/1/2017.
*/
export class InputBEModel extends PropertyBEModel {
properties:Array<ComponentInstanceProperty>;
inputs:Array<ComponentInstanceInput>;
constructor(input?: PropertyBEModel) {
super(input);
}
public toJSON = (): any => {
};
}
export class ComponentInstanceProperty extends PropertyBEModel {
componentInstanceId:string;
componentInstanceName:string;
constructor(property?: PropertyBEModel) {
super(property);
}
public toJSON = (): any => {
};
}
export class ComponentInstanceInput extends InputBEModel {
componentInstanceId:string;
componentInstanceName:string;
constructor(property?: PropertyBEModel) {
super(property);
}
public toJSON = (): any => {
};
}
|