aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
blob: 5d2c1116e40f0ac86fb8d54c765ff00303346e0b (plain)
1
2
3
4
5
6
7
8
9
10
export class InputActionAttribute {
    name: string;
    description: string;
    type: string;
    required: boolean;
}

export class OutputActionAttribute extends InputActionAttribute {

}