19 lines
384 B
C#
19 lines
384 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// UserCertifyPayload Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class UserCertifyPayload : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 授权编码
|
|
/// </summary>
|
|
[XmlElement("auth_code")]
|
|
public string AuthCode { get; set; }
|
|
}
|
|
}
|