Code Review
/
ccsdk
/
cds.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3aa3703601812b102f4b613d91f3718261d1608b
[ccsdk/cds.git]
/
1
export class InputActionAttribute {
2
name: string;
3
description: string;
4
type: string;
5
required: boolean;
6
7
constructor() {
8
this.name = '';
9
this.description = '';
10
this.type = '';
11
this.required = false;
12
}
13
}
14
15
export class OutputActionAttribute extends InputActionAttribute {
16
17
}