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