using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PkgAuthRelation Data Structure.
///
[Serializable]
public class PkgAuthRelation : AopObject
{
///
/// 手机号
///
[XmlElement("mobile")]
public string Mobile { get; set; }
///
/// 家人称谓
///
[XmlElement("role")]
public string Role { get; set; }
///
/// 支付宝uid
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}