12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #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.ShakeAround
- {
-
-
-
- public class RelationSearchResultJson : WxJsonResult
- {
-
-
-
- public RelationSearchDate data { get; set; }
- }
- public class RelationSearchDate
- {
- public List<RelationItem> relations { get; set; }
-
-
-
- public int total_count { get; set; }
- }
-
-
-
- public class RelationItem : DeviceApply_Data_Device_Identifiers
- {
-
-
-
- public long page_id { get; set; }
- }
- }
|