NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoEprintTokenRefresh...

31 lines
723 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEcoEprintTokenRefreshModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoEprintTokenRefreshModel : AopObject
{
/// <summary>
/// 应用ID
/// </summary>
[XmlElement("client_id")]
public string ClientId { get; set; }
/// <summary>
/// 应用Secret
/// </summary>
[XmlElement("client_secret")]
public string ClientSecret { get; set; }
/// <summary>
/// 刷新Token
/// </summary>
[XmlElement("refresh_token")]
public string RefreshToken { get; set; }
}
}