RDSBindDeviceVC.h 515 B

1234567891011121314151617181920212223
  1. //
  2. // RDSBindDeviceVC.h
  3. // Temperature
  4. //
  5. // Created by RD on 2022/11/21.
  6. //
  7. #import "RDSBaseViewController.h"
  8. #import "RDSDeviceTypeModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RDSBindDeviceVC : RDSBaseViewController
  11. @property (nonatomic, strong) NSString *roomName;
  12. @property (nonatomic, strong) NSString *deviceID;
  13. @property (nonatomic, strong) NSString *wifiName;
  14. @property (nonatomic, strong) NSString *pwd;
  15. @property (nonatomic, strong) RDSDeviceTypeModel *deviceTypeModel;
  16. @end
  17. NS_ASSUME_NONNULL_END