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