using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 保存饿了么门店信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeStoreSaveResponse { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "storeName")] public string StoreName { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } } }