using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEvercallContractSignResponse. /// public class AlipayEvercallContractSignResponse : AopResponse { /// /// 签约手机号 /// [XmlElement("mobile_no")] public string MobileNo { get; set; } /// /// 支付宝账户号 /// [XmlElement("user_id")] public string UserId { get; set; } } }