| 123456789101112131415161718192021222324 |
- //
- // MOGradeCollectionCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/12/27.
- //
- #define MOGradeCollectionCell_ID @"MOGradeCollectionCell_ID" //复用id
- #import <UIKit/UIKit.h>
- #import "MOGradeInfoCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOGradeCollectionCell : UITableViewCell
- @property (nonatomic, assign) NSInteger level;
- @property (nonatomic, strong) NSArray *dataArr;
- @property (nonatomic, copy) void(^cellClickBlock)(MOPrivilegesItemInfo *cellModel);
- @end
- NS_ASSUME_NONNULL_END
|