20 lines
317 B
C
20 lines
317 B
C
|
|
//
|
||
|
|
// MessageNotificationCell.h
|
||
|
|
// Youth
|
||
|
|
//
|
||
|
|
// Created by ko1o on 2022/1/9.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "PYTableViewController.h"
|
||
|
|
#import "MessageNotification.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface MessageNotificationCell : PYTableCell
|
||
|
|
|
||
|
|
@property (nonatomic, strong) void(^action)(UIButton *button);
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|