FarmMapsLib/projects/common/src/fm/models/itemTask.ts

23 lines
418 B
TypeScript
Raw Normal View History

2019-07-15 14:54:19 +00:00
export interface IItemTask {
code?: string;
taskType?: string;
2020-03-26 13:05:50 +00:00
attributes?: any;
message?: string,
state?: number,
started?: Date,
finished?: Date
2019-07-15 14:54:19 +00:00
}
export class ItemTask implements IItemTask {
public code?:string;
public taskType?: string;
public attributes?: any;
2020-03-26 13:05:50 +00:00
public message?: string;
public state?: number;
public started?: Date;
public finished?: Date;
2019-07-15 14:54:19 +00:00
constructor() {
}
2020-03-26 13:05:50 +00:00
}