using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoTokenFastGetModel Data Structure. /// [Serializable] public class AlipayEcoTokenFastGetModel : AopObject { /// /// 授权码 /// [XmlElement("auth_code")] public string AuthCode { get; set; } /// /// 应用ID /// [XmlElement("client_id")] public string ClientId { get; set; } /// /// 应用Secret /// [XmlElement("client_secret")] public string ClientSecret { get; set; } } }