MOFirstRechargeCell.h 474 B

12345678910111213141516171819202122232425
  1. //
  2. // MOFirstRechargeCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/9/9.
  6. //
  7. #define MOFirstRechargeCell_ID @"MOFirstRechargeCell_ID"
  8. #import <UIKit/UIKit.h>
  9. #import "MOFirstRechargeTableViewCell.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOFirstRechargeCell : UICollectionViewCell
  12. @property (nonatomic, strong) MOGiftPackData *viewData;
  13. @property (nonatomic, copy) void(^viewDataBlock)(MOGiftPackData *viewData);
  14. - (void)toGetViewData;
  15. @end
  16. NS_ASSUME_NONNULL_END