using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AuthInfo Data Structure.
///
[Serializable]
public class AuthInfo : AopObject
{
///
/// 授权号
///
[XmlElement("auth_code")]
public string AuthCode { get; set; }
///
/// 授权类型
///
[XmlElement("auth_type")]
public string AuthType { get; set; }
}
}