using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 套餐内组合 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiduProductComboGroup { /// /// 组合名称 /// [JsonProperty(PropertyName = "group_name")] public string Group_name { get; set; } /// /// 百度组合ID /// [JsonProperty(PropertyName = "baidu_group_id")] public string Baidu_group_id { get; set; } /// /// 组合内单品,菜品和单菜一致 /// [JsonProperty(PropertyName = "product")] public List GroupDetailList; } }