using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserAuthSecondpartyTokenVerifyModel Data Structure.
///
[Serializable]
public class AlipayUserAuthSecondpartyTokenVerifyModel : AopObject
{
///
/// 二方登录token
///
[XmlElement("second_party_token")]
public string SecondPartyToken { get; set; }
///
/// 渠道来源
///
[XmlElement("source")]
public string Source { get; set; }
}
}