19 lines
269 B
Objective-C
19 lines
269 B
Objective-C
//
|
|
// BlackListCell.h
|
|
// Youth
|
|
//
|
|
// Created by mambaxie on 2022/1/2.
|
|
//
|
|
|
|
#import "PYTableViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BlackListCell : PYTableCell
|
|
|
|
@property (nonatomic, strong) void(^removeAction)(User *user);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|