SetOption.cs 564 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using JLHHJSvr.Com.Model;
  6. using LJLib.Net.SPI.Com;
  7. namespace JLHHJSvr.Com
  8. {
  9. /// <summary>
  10. /// 设置系统选项值
  11. /// </summary>
  12. public sealed class SetOptionRequest : ILJRequest<SetOptionResponse>
  13. {
  14. public string GetApiName()
  15. {
  16. return "SetOption";
  17. }
  18. public string token { get; set; }
  19. public Option optionInfo { get; set; }
  20. }
  21. public sealed class SetOptionResponse : LJResponse
  22. {
  23. }
  24. }