Code Review
/
ccsdk
/
cds.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b4cce34840778902752cf1e3b3a82f7c873588cf
[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 = true;
12
}
13
}
14
15
export class OutputActionAttribute extends InputActionAttribute {
16
17
}