| 1234567891011121314151617181920212223 |
- 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 BranchnodeCode { get; set; }
- public string Des { get; set; }
- public List<WFAuditor> auditors { get; set; }
- }
- }
|