12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- using System.Collections.Generic;
- using Senparc.Weixin.Entities;
- namespace Senparc.Weixin.MP.AdvancedAPIs
- {
-
-
-
- public class AddGroupResult : WxJsonResult
- {
-
-
-
- public int group_id { get; set; }
- }
-
-
-
- public class GetAllGroup
- {
-
-
-
- public List<GroupsDetail> groups_detail { get; set; }
- }
- public class GroupsDetail
- {
-
-
-
- public int group_id { get; set; }
-
-
-
- public string group_name { get; set; }
- }
- public class GetByIdGroup : WxJsonResult
- {
-
-
-
- public Group_Detail group_detail { get; set; }
- }
- public class Group_Detail
- {
-
-
-
- public int group_id { get; set; }
-
-
-
- public string group_name { get; set; }
-
-
-
- public string[] product_list { get; set; }
- }
- }
|