// // NotiCenterTableViewCell.h // ShenQi // // Created by twotutoo on 2025/1/11. // #import #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