using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenPublicMenuBatchqueryResponse. /// public class AlipayOpenPublicMenuBatchqueryResponse : AopResponse { /// /// 菜单数量,包括默认菜单和个性化菜单 /// [XmlElement("count")] public string Count { get; set; } /// /// 菜单列表 /// [XmlArray("menus")] [XmlArrayItem("query_menu")] public List Menus { get; set; } } }