Files
WebApp/ShenQi/NotiCenterTableViewCell.h
2025-01-11 14:58:16 +08:00

28 lines
661 B
Objective-C

//
// NotiCenterTableViewCell.h
// ShenQi
//
// Created by twotutoo on 2025/1/11.
//
#import <UIKit/UIKit.h>
#import "PushRecordList.h"
NS_ASSUME_NONNULL_BEGIN
@interface NotiCenterTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIView *mainView;
@property (weak, nonatomic) IBOutlet UILabel *typeLabel;
@property (weak, nonatomic) IBOutlet UILabel *dateLabel;
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
@property (weak, nonatomic) IBOutlet UIButton *arrowBtn;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *widthConstraint;
@property (nonatomic, strong) PushRecordList *list;
@end
NS_ASSUME_NONNULL_END