blob: ac5dff56fdfa428ecb05c6e3e5967990a84b31f8 [file] [log] [blame]
/**
* TODO: Class level comments please
*
* @author dimuthu
* @since 1.0.0-SNAPSHOT
*/
export class TaskParam {
id: number;
key: string;
value: string;
constructor(id: number, key: string, value: string) {
this.id = id;
this.key = key;
this.value = value;
}
}