using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WorkFlowApi.Utility.WorkFlowEngine.Scheme.Node; namespace WorkFlowApi.ViewModels.Input { public class AuditFlowReq { public string OperationCode { get; set; } public string OperationName { get; set; } public string ProcessId { get; set; } public string TaskId { get; set; } public string BranchnodeCode { get; set; } public string Des { get; set; } public List auditors { get; set; } } }