summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
blob: 3aa3703601812b102f4b613d91f3718261d1608b (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 = false;
    }
}

export class OutputActionAttribute extends InputActionAttribute {

}