12345678910111213141516171819202122 |
- //
- // YOUPAILZChatRoomUpSeatApplyCell.h
- // VQU
- //
- // Created by CY on 2021/11/6.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZChatRoomMemberModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZChatRoomUpSeatApplyCell : UITableViewCell
- @property (nonatomic,copy) void (^youpaipignoreBtnClickBlock)(YOUPAILZChatRoomMemberModel *model,NSInteger index); // 忽略
- @property (nonatomic,copy) void (^youpaipupseatBtnClickBlock)(YOUPAILZChatRoomMemberModel *model,NSInteger index); // 抱上麦
- - (void)youpaifreloadWithModel:(YOUPAILZChatRoomMemberModel *)model index:(NSInteger)index playType:(NSInteger)playType;
- @end
- NS_ASSUME_NONNULL_END
|