using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayUserBindingGetResponse. /// public class AlipayUserBindingGetResponse : AopResponse { /// /// 合作伙伴用户id /// [XmlElement("partner_user_id")] public string PartnerUserId { get; set; } /// /// 淘宝用户id /// [XmlElement("taobao_id")] public string TaobaoId { get; set; } } }