summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
blob: 82bdb6076dc4467183cf46cbf754db2add57c667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export class InputActionAttribute {
    name: string;
    description: string;
    type: string;
    required: boolean;


    constructor() {
        this.name = '';
        this.description = '';
        this.type = '';
        this.required = true;

    }
}

export class OutputActionAttribute extends InputActionAttribute {
    value = '';
}