using JLHHJSvr.Com.Model; using LJLib.Net.SPI.Com; using System.Collections.Generic; namespace JLHHJSvr.Com { /// /// 获取用户自定义值 /// public sealed class GetPriceListRequest : ILJRequest { public string token { get; set; } public string GetApiName() { return "GetPriceList"; } } public sealed class GetPriceListResponse : LJResponse { public List list { get; set; } } }