using System; using System.Collections.Generic; using System.Linq; using System.Text; using JLHHJSvr.Com.Model; using LJLib.Net.SPI.Com; namespace JLHHJSvr.Com { /// /// 设置系统选项值 /// public sealed class SetOptionRequest : ILJRequest { public override string GetApiName() { return "SetOption"; } public string token { get; set; } public Option optionInfo { get; set; } } public sealed class SetOptionResponse : LJResponse { } }