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