using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceKidsAccountQueryModel Data Structure. /// [Serializable] public class AlipayCommerceKidsAccountQueryModel : AopObject { /// /// 登陆名 /// [XmlElement("login_name")] public string LoginName { get; set; } /// /// 产品码 /// [XmlElement("product_code")] public string ProductCode { get; set; } } }