downLoadPreViewCell.h 1000 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // downLoadPreViewCell.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2024/1/8.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "couldPhoneFileListModel.h"
  9. #import "NASFileAudioModel.h"
  10. #import "NASFileAndFolderModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface downLoadPreViewCell : UITableViewCell
  13. @property(nonatomic,strong)UIView *lineView;
  14. @property(nonatomic,strong)UIView *cellBgView;
  15. @property(nonatomic,strong)UIImageView *mImageView;
  16. @property(nonatomic,strong)UILabel *titleLabel;
  17. @property(nonatomic,strong)UILabel *titleLabel2;
  18. @property(nonatomic,strong)UIImageView *rightImage;
  19. @property(nonatomic, strong) CALayer* bgViewLayer;
  20. @property(nonatomic, strong) UIButton *checkButton;
  21. @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
  22. @property(nonatomic,strong) couldPhoneFileModel*curFileModel;
  23. @property(nonatomic,strong) NASFileAudioDataModel*curNASFileAudioDataModel;
  24. @property(nonatomic,strong) NASFileAndFolderDataModel*curNASFileAndFolderDataModel;
  25. @end
  26. NS_ASSUME_NONNULL_END