RDSCtrlModeCell.h 401 B

12345678910111213141516171819202122232425
  1. //
  2. // RDSCtrlModeCell.h
  3. // Temperature
  4. //
  5. // Created by RD on 2023/1/6.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ModelImg.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RDSCtrlModeCell : UICollectionViewCell
  11. // 模式(1:制冷,2:制热,3:除湿4:送风5:新风 6:加湿)
  12. @property (nonatomic, assign) int mode;
  13. @property (nonatomic, strong) ModelImg *modelImg;
  14. @end
  15. NS_ASSUME_NONNULL_END