using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayOpenPublicMenuBatchqueryResponse.
///
public class AlipayOpenPublicMenuBatchqueryResponse : AopResponse
{
///
/// 菜单数量,包括默认菜单和个性化菜单
///
[JsonProperty("count")]
public string Count { get; set; }
///
/// 菜单列表
///
[JsonProperty("menus")]
public List Menus { get; set; }
}
}