NewGaoKaoApi/PaymentSDK/AliPay/Domain/QueryMenu.cs

40 lines
1006 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// QueryMenu Data Structure.
/// </summary>
[Serializable]
public class QueryMenu : AopObject
{
/// <summary>
/// 一级菜单列表
/// </summary>
[XmlArray("button")]
[XmlArrayItem("button_object")]
public List<ButtonObject> Button { get; set; }
/// <summary>
/// 标签规则项列表
/// </summary>
[XmlArray("label_rule")]
[XmlArrayItem("query_label_rule")]
public List<QueryLabelRule> LabelRule { get; set; }
/// <summary>
/// 菜单唯一id
/// </summary>
[XmlElement("menu_key")]
public string MenuKey { get; set; }
/// <summary>
/// 菜单类型iconicon型菜单text文本型菜单
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}