using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 美团解绑URL /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MeiTuanStoreMapRelaseUrlRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 业务类型 /// [JsonProperty(PropertyName = "businessId")] public string BusinessId { get; set; } } }