blob: 0f708479a30202b8f43803c7d283dc6e94d08149 [file] [log] [blame]
export class TaskInputType {
id: number;
name: String;
type: String;
defaultValue: string;
constructor(id: number = 0, name: String = null, type: String = null, defaultValue: string = null) {
this.id = id;
this.name = name;
this.type = type;
this.defaultValue = defaultValue;
}
}