Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOpenPublicMenuBatchqueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

25 lines
573 B
C#

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