ActionOperationResult.cs 498 B

12345678910111213141516171819202122
  1. using DapperORMCore.Model.CoreModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace NXWMS.Model.CoreModels
  8. {
  9. public class ActionOperationResult
  10. {
  11. public OperateResultInfo Value { get; set; }
  12. public string[] Formatters { get; set; }
  13. public string[] ContentTypes { get; set; }
  14. public string DeclaredType { get; set; }
  15. public int? StatusCode { get; set; }
  16. }
  17. }