12345678910111213141516171819 |
- //
- // shareRecordTableViewCell.h
- // 双子星云手机
- //
- // Created by xd h on 2024/5/14.
- //
- #import <UIKit/UIKit.h>
- #import "ShareRecordModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface shareRecordTableViewCell : UITableViewCell
- @property(nonatomic,assign) BOOL isEditType;
- @property(nonatomic,strong) ShareRecordListModel *dataModel;
- @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
- @end
- NS_ASSUME_NONNULL_END
|