您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

20 行
431 B

  1. using System.Collections.Generic;
  2. namespace Learun.Application.WeChat
  3. {
  4. public class MenuGetResult : OperationResultsBase
  5. {
  6. public Menu menu { get; set; }
  7. public class Menu
  8. {
  9. /// <summary>
  10. /// 一级菜单数组,个数应为1~3个
  11. /// </summary>
  12. /// <returns></returns>
  13. public List<MenuItem> button { get; set; }
  14. }
  15. }
  16. }