using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 饿了么门店解绑 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeStoreUnbindRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } } }