// // diskListTableCell.h // 隐私保护 // // Created by xd h on 2024/1/23. // #import #import "cloudPhoneExtraFileListModel.h" NS_ASSUME_NONNULL_BEGIN @interface diskListTableCell : UITableViewCell @property(nonatomic,strong)UIView *lineView; @property(nonatomic,strong)UIView *cellBgView; @property(nonatomic,strong)UIImageView *mImageView; @property(nonatomic,strong)UILabel *titleLabel; @property(nonatomic,strong)UILabel *titleLabel2; @property(nonatomic,strong)UIImageView *rightImage; @property(nonatomic, strong) CALayer* bgViewLayer; @property(nonatomic, strong) UIButton *checkButton; @property(nonatomic, strong) cloudPhoneExtraFileModel *curModel; @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn); @end NS_ASSUME_NONNULL_END