blob: dce76d597ed6d036340440021bfd003c1260b2fe (
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
|
/**
* Created by obarda on 1/22/2017.
*/
'use strict';
import {SchemaPropertyGroupModel} from "./aschema-property";
export interface InputPropertyBase {
uniqueId:string;
name:string;
defaultValue:string;
description:string;
password:boolean;
required:boolean;
type:string;
parentUniqueId:string;
schema:SchemaPropertyGroupModel;
componentInstanceId:string;
//instance properties
value:string;
//custom properties
isAlreadySelected:boolean;
}
|