using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeGroups { /// /// 组名 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 类型 /// [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// 组明细 /// [JsonProperty(PropertyName = "items")] public List Items { get; set; } } }