12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #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.WiFi
- {
-
-
-
- public class GetDeviceListResult : WxJsonResult
- {
- public DeviceList_Data data { get; set; }
- }
- public class DeviceList_Data
- {
-
-
-
- public int recordcount { get; set; }
-
-
-
- public int pageindex { get; set; }
-
-
-
- public int pagecount { get; set; }
-
-
-
- public List<DeviceList_Data_Record> records { get; set; }
- }
- public class DeviceList_Data_Record
- {
-
-
-
- public long shop_id { get; set; }
-
-
-
- public string ssid { get; set; }
-
-
-
- public string bssid { get; set; }
- }
- }
|