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