using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 美团门店解绑返回对象 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MeiTuanStoreMapRelaseUrlResponse { /// /// 绑定链接 /// [JsonProperty(PropertyName = "url")] public string Url { get; set; } } }