SystemParameterOutput.cs 308 B

1234567891011121314
  1. using Long.Core.Api;
  2. namespace Long.Common.System
  3. {
  4. /// <summary>
  5. /// 系统参数·输出类
  6. /// </summary>
  7. public class SystemParameterOutput: ApiResult
  8. {
  9. /// <summary>
  10. /// 系统参数
  11. /// </summary>
  12. public SystemParameter Data { get; set; }
  13. }
  14. }