DevicePostReq.cs 495 B

123456789101112131415161718192021
  1. namespace IoTIntegrationPlatform.Model.MqttModel
  2. {
  3. ///// <summary>
  4. ///// 设备心跳请求
  5. ///// </summary>
  6. //public class DevicePostReq
  7. //{
  8. // public DevicePostInfo[] devices { get; set; }
  9. // public SceneInfo[] scenes { get; set; }
  10. //}
  11. /// <summary>
  12. /// 设备心跳请求
  13. /// </summary>
  14. public class DevicePostReq
  15. {
  16. public string uid { get; set; } = string.Empty;
  17. public DevicePostInfo data { get; set; }
  18. }
  19. }