added workflowcode to IItemTask
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Mark van der Wal 2024-11-20 09:11:34 +01:00
parent fcbd68eca0
commit 852b1db895

View File

@ -1,6 +1,7 @@
export interface IItemTask {
code?: string;
workflowCode?: string;
taskType?: string;
attributes?: any;
message?: string,
@ -11,6 +12,7 @@ export interface IItemTask {
export class ItemTask implements IItemTask {
public code?:string;
public workflowCode?: string;
public taskType?: string;
public attributes?: any;
public message?: string;