12345678910111213141516171819 |
- using System.Collections.Generic;
- using JLHHJSvr.Com.Model;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- public sealed class DeleteSoftBedQuoteRequest : ILJTokenRequest<DeleteSoftBedQuoteResponse>
- {
- public override string GetApiName()
- {
- return "DeleteSoftBedQuote";
- }
- public List<u_softbed> list { get; set; }
- }
- public sealed class DeleteSoftBedQuoteResponse : LJResponse
- {
- }
- }
|