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