using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// QueryMenu Data Structure.
///
[Serializable]
public class QueryMenu : AopObject
{
///
/// 一级菜单列表
///
[JsonProperty("button")]
public List Button { get; set; }
///
/// 标签规则项列表
///
[JsonProperty("label_rule")]
public List LabelRule { get; set; }
///
/// 菜单唯一id
///
[JsonProperty("menu_key")]
public string MenuKey { get; set; }
///
/// 菜单类型,icon:icon型菜单,text:文本型菜单
///
[JsonProperty("type")]
public string Type { get; set; }
}
}