blob: 8c59b17aa2b48ddaf17d20b1449ea8efde55fba5 [file] [log] [blame]
/**
* TODO: Class level comments please
*
* @author dimuthu
* @since 1.0.0-SNAPSHOT
*/
export class ApplicationOutput {
id: number;
name: string;
type: number;
value: string;
constructor(id: number = 0, name: string = null, type: number = 0, value: string = null) {
this.id = id;
this.name = name;
this.type = type;
this.value = value;
}
}