using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZhubUidTelPair Data Structure. /// [Serializable] public class ZhubUidTelPair : AopObject { /// /// 手机号 /// [XmlElement("phone")] public string Phone { get; set; } /// /// 支付宝uid /// [XmlElement("user_id")] public string UserId { get; set; } } }