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