GroupsJson.cs 915 B

123456789101112131415161718192021222324252627282930313233
  1. /*----------------------------------------------------------------
  2. Copyright (C) 2019 Senparc
  3. 文件名:GroupsJson.cs
  4. 文件功能描述:获取用户分组列表返回结果
  5. 创建标识:Senparc - 20150211
  6. 修改标识:Senparc - 20150303
  7. 修改描述:整理接口
  8. ----------------------------------------------------------------*/
  9. using System.Collections.Generic;
  10. using Senparc.Weixin.Entities;
  11. namespace Senparc.Weixin.MP.AdvancedAPIs.Groups
  12. {
  13. public class GroupsJson : WxJsonResult
  14. {
  15. public List<GroupsJson_Group> groups { get; set; }
  16. }
  17. public class GroupsJson_Group
  18. {
  19. public int id { get; set; }
  20. public string name { get; set; }
  21. /// <summary>
  22. /// 此属性在CreateGroupResult的Json数据中,创建结果中始终为0
  23. /// </summary>
  24. public int count { get; set; }
  25. }
  26. }