12345678910111213141516171819202122 |
- //
- // YXRoomManagerTableViewCell.h
- // Temperature
- //
- // Created by TC on 2025/2/6.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXRoomManagerTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *numberLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *picImgView;
- @end
- NS_ASSUME_NONNULL_END
|