| 12345678910111213141516171819202122 |
- //
- // MONormalRightMenuCell.h
- // MiMoLive
- //
- // Created by SuperC on 2025/6/8.
- //
- #define MONormalRightMenuCell_ID @"MONormalRightMenuCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MONormalRightMenuCell : UITableViewCell
- @property (nonatomic, strong) UILabel *contentLab;
- @property (nonatomic, strong) NSDictionary *cellModel;
- @end
- NS_ASSUME_NONNULL_END
|