using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeDishItemAttribute { /// /// 属性名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 属性值 /// [JsonProperty(PropertyName = "value")] public string Value { get; set; } } }