YOUPAILZLiveManageCell.h 519 B

123456789101112131415161718192021
  1. //
  2. // YOUPAILZLiveManageCell.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/8/25.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZLiveManageModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZLiveManageCell : UITableViewCell
  12. @property (nonatomic,copy) void (^youpaiprepealBlock)(YOUPAILZLiveManageModel *model,NSIndexPath *indexPath); //撤销回调
  13. - (void)youpaifreloadWithModel:(YOUPAILZLiveManageModel *)model indexPath:(NSIndexPath *)indexPath;
  14. @end
  15. NS_ASSUME_NONNULL_END