blob: a8e9b435a49a6a43a6d5dcb4ddcb900b9c4cc5a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/******************************************
type - node type
isFirstLevel : node is first level
******************************************/
export class DragAndDropModel {
type : string;
isFirstLevel : boolean;
constructor(type : string, isFirstLevel : boolean){
this.type = type;
this.isFirstLevel = isFirstLevel;
}
}
|