SensorDeviceModel.h 442 B

12345678910111213141516171819202122
  1. //
  2. // SensorDeviceModel.h
  3. // FunSDKDemo
  4. //
  5. // Created by Megatron on 2019/3/29.
  6. // Copyright © 2019 Megatron. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SensorDeviceModel : NSObject
  11. @property (nonatomic,strong) NSMutableDictionary *dicListInfo;
  12. @property (nonatomic,assign) BOOL ifOnline;
  13. @property (nonatomic,strong) NSMutableDictionary *dicStatusInfo;
  14. @end
  15. NS_ASSUME_NONNULL_END