You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MenuGetResult.cs 431 B

4 years ago
12345678910111213141516171819
  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. }