12345678910111213141516171819202122 |
- using DapperORMCore.Model.CoreModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.CoreModels
- {
- public class ActionOperationResult
- {
- public OperateResultInfo Value { get; set; }
- public string[] Formatters { get; set; }
- public string[] ContentTypes { get; set; }
- public string DeclaredType { get; set; }
- public int? StatusCode { get; set; }
- }
- }
|