summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
blob: b4cce34840778902752cf1e3b3a82f7c873588cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 {

}