20 lines
431 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
namespace Learun.Application.WeChat
{
public class MenuGetResult : OperationResultsBase
{
public Menu menu { get; set; }
public class Menu
{
/// <summary>
/// 一级菜单数组个数应为1~3个
/// </summary>
/// <returns></returns>
public List<MenuItem> button { get; set; }
}
}
}