using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceAirXfgDsgModifyModel Data Structure. /// [Serializable] public class AlipayCommerceAirXfgDsgModifyModel : AopObject { /// /// 用户年龄 /// [XmlElement("age")] public string Age { get; set; } /// /// 用户名 /// [XmlElement("nam")] public string Nam { get; set; } /// /// 男 /// [XmlElement("sex")] public string Sex { get; set; } /// /// 1 /// [XmlElement("xbw")] public string Xbw { get; set; } } }