// // lastFileTableViewCell.h // Private-X // // Created by xd h on 2024/7/9. // #import #import "lastFileManager.h" NS_ASSUME_NONNULL_BEGIN @interface lastFileTableViewCell : UITableViewCell @property(nonatomic,strong)UIView *cellBgView; @property(nonatomic,strong)UILabel *timeLabel; @property(nonatomic,strong)UIImageView *mImageView; @property(nonatomic,strong)UILabel *titleLabel; @property(nonatomic,strong)UILabel *contentLabel; @property(nonatomic, strong) UIButton *checkButton; @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn); @property(nonatomic,strong) lastFileModel*curLastFileModel; - (void)hideCheckButtonBy:(BOOL)isHide; @end NS_ASSUME_NONNULL_END