| 1234567891011121314151617181920212223 |
- //
- // MOActiveImageCell.h
- // MiMoLive
- //
- // Created by SuperC on 2025/2/21.
- //
- #define MOActiveImageCell_ID @"MOActiveImageCell_ID"
- #import <UIKit/UIKit.h>
- #import "MODialogsData.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOActiveImageCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *iconImgView;
- @property (nonatomic, strong) MODialogsData *cellModel;
- @end
- NS_ASSUME_NONNULL_END
|