using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeDishItemIngredient { /// /// 配料code /// [JsonProperty(PropertyName = "skuCode")] public string SkuCode { get; set; } /// /// 配料名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } } }