All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
26 lines
474 B
TypeScript
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() {
|
|
}
|
|
}
|