using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Common.JsonObject { /// /// kds返回订单接收结果 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class KdsNewOrderResult { /// /// 请求参数 /// [JsonProperty(PropertyName = "requestObj")] public string RequestObj { get; set; } /// /// 厨显or出品 /// [JsonProperty(PropertyName = "category")] public KDSCategory Category { get; set; } } }