Mark 852b1db895
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
added workflowcode to IItemTask
2024-11-20 09:11:34 +01:00

26 lines
474 B
TypeScript

export interface IItemTask {
code?: string;
workflowCode?: string;
taskType?: string;
attributes?: any;
message?: string,
state?: number,
started?: Date,
finished?: Date
}
export class ItemTask implements IItemTask {
public code?:string;
public workflowCode?: string;
public taskType?: string;
public attributes?: any;
public message?: string;
public state?: number;
public started?: Date;
public finished?: Date;
constructor() {
}
}