using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserPrincipalInfo Data Structure. /// [Serializable] public class AlipayUserPrincipalInfo : AopObject { /// /// 用户电子邮箱 /// [XmlElement("email")] public string Email { get; set; } /// /// 用户的手机号 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 支付宝userId /// [XmlElement("user_id")] public string UserId { get; set; } } }