23 lines
377 B
Objective-C
23 lines
377 B
Objective-C
//
|
|
// NotiCenterContentTableViewCell.h
|
|
// ShenQi
|
|
//
|
|
// Created by twotutoo on 2025/1/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "PushRecordList.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NotiCenterContentTableViewCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *contentLabel;
|
|
|
|
@property (nonatomic, strong) PushRecordList *list;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|