YOUPAILZChatRoomUpSeatApplyCell.h 690 B

12345678910111213141516171819202122
  1. //
  2. // YOUPAILZChatRoomUpSeatApplyCell.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/11/6.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZChatRoomMemberModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZChatRoomUpSeatApplyCell : UITableViewCell
  12. @property (nonatomic,copy) void (^youpaipignoreBtnClickBlock)(YOUPAILZChatRoomMemberModel *model,NSInteger index); // 忽略
  13. @property (nonatomic,copy) void (^youpaipupseatBtnClickBlock)(YOUPAILZChatRoomMemberModel *model,NSInteger index); // 抱上麦
  14. - (void)youpaifreloadWithModel:(YOUPAILZChatRoomMemberModel *)model index:(NSInteger)index playType:(NSInteger)playType;
  15. @end
  16. NS_ASSUME_NONNULL_END