DeleteSoftBedQuote.cs 562 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. using JLHHJSvr.Com.Model;
  3. using LJLib.Net.SPI.Com;
  4. namespace JLHHJSvr.Com
  5. {
  6. public sealed class DeleteSoftBedQuoteRequest : ILJRequest<DeleteSoftBedQuoteResponse>
  7. {
  8. public override string GetApiName()
  9. {
  10. return "DeleteSoftBedQuote";
  11. }
  12. /// <summary>
  13. /// 登录token
  14. /// </summary>
  15. public string token { get; set; }
  16. public List<u_softbed> list { get; set; }
  17. }
  18. public sealed class DeleteSoftBedQuoteResponse : LJResponse
  19. {
  20. }
  21. }