1234567891011121314151617181920212223 |
- //
- // RDSBindDeviceVC.h
- // Temperature
- //
- // Created by RD on 2022/11/21.
- //
- #import "RDSBaseViewController.h"
- #import "RDSDeviceTypeModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RDSBindDeviceVC : RDSBaseViewController
- @property (nonatomic, strong) NSString *roomName;
- @property (nonatomic, strong) NSString *deviceID;
- @property (nonatomic, strong) NSString *wifiName;
- @property (nonatomic, strong) NSString *pwd;
- @property (nonatomic, strong) RDSDeviceTypeModel *deviceTypeModel;
- @end
- NS_ASSUME_NONNULL_END
|