shareRecordTableViewCell.h 430 B

12345678910111213141516171819
  1. //
  2. // shareRecordTableViewCell.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/5/14.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ShareRecordModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface shareRecordTableViewCell : UITableViewCell
  11. @property(nonatomic,assign) BOOL isEditType;
  12. @property(nonatomic,strong) ShareRecordListModel *dataModel;
  13. @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
  14. @end
  15. NS_ASSUME_NONNULL_END