MORankListVC.h 536 B

1234567891011121314151617181920212223242526
  1. //
  2. // MORankListVC.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/11/30.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MORankListVC : UIViewController
  10. /** 1 为直播间贡献榜 (不在这里显示) 2为总贡献榜 3 为收益榜 */
  11. @property (nonatomic, assign) NSInteger typeNum;
  12. /// 是否新人主播榜单
  13. @property (nonatomic, assign) BOOL isNewer;
  14. @property (nonatomic, strong) NSArray *countryDataArr;
  15. @property (nonatomic, copy) void (^headBtnBlock)(MOUserBase *model);
  16. @end
  17. NS_ASSUME_NONNULL_END