XYVoiceRoomRechargeBtnView.h 391 B

123456789101112131415161718192021222324
  1. //
  2. // XYVoiceRoomRechargeBtnView.h
  3. // Timi
  4. //
  5. // Created by gy on 2021/3/9.
  6. //
  7. #import "BaseView.h"
  8. #import "XYLiveRoomActivityInfo.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface XYVoiceRoomRechargeBtnView : BaseView
  11. - (void)setup;
  12. /// 所有活动的数组
  13. @property (nonatomic, strong) NSMutableArray<XYLiveRoomActivityInfo *> *allActivityArrs;
  14. - (void)clear;
  15. @end
  16. NS_ASSUME_NONNULL_END