BogoOpenWardBottomView.h 749 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BogoOpenWardBottomView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/10/9.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BogoOpenWardBottomView : UIView
  11. @property(nonatomic, strong) UILabel *myDiamondL;
  12. @property(nonatomic, strong) QMUIButton *timeBtn;
  13. @property(nonatomic, strong) QMUIButton *openBtn;
  14. //我是不是这主播的守护 1是守护者2不是
  15. @property(nonatomic, strong) NSString *is_guartian;
  16. @property(nonatomic, strong) NSString *guartian_time;
  17. @property(nonatomic, strong) NSString *diamondStr;
  18. @property(nonatomic, strong) NSString *guartian_icon;
  19. @property(nonatomic, copy) void (^clickOpenBtnBlock)(BOOL isClick);
  20. @end
  21. NS_ASSUME_NONNULL_END