using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 饿了么绑定地址获取 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeAuthorizeUrlRequest { /// /// 应用ID /// [JsonProperty(PropertyName = "appSign")] public string AppSign { get; set; } /// /// 编号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } } }