YOUPAILZEndLiveHintView.h 577 B

123456789101112131415161718192021
  1. //
  2. // YOUPAILZEndLiveHintView.h
  3. // VQU
  4. //
  5. // Created by 肖浩然的mac on 2021/7/27.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZEndLiveHintModel.h"
  10. @class YOUPAILZLiveListItemModel;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface YOUPAILZEndLiveHintView : UIView
  13. @property (nonatomic, copy) void (^youpaipcloseBlock)(void);
  14. @property (nonatomic, copy) void (^youpaipitemClickBlock)(YOUPAILZLiveListItemModel *itemModel);
  15. - (instancetype)initWithFrame:(CGRect)frame Model:(YOUPAILZEndLiveHintModel *)model;
  16. @end
  17. NS_ASSUME_NONNULL_END