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