DeleteSoftBedQuote.cs 456 B

12345678910111213141516171819
  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 : ILJTokenRequest<DeleteSoftBedQuoteResponse>
  7. {
  8. public override string GetApiName()
  9. {
  10. return "DeleteSoftBedQuote";
  11. }
  12. public List<u_softbed> list { get; set; }
  13. }
  14. public sealed class DeleteSoftBedQuoteResponse : LJResponse
  15. {
  16. }
  17. }