1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // PBStructureTableViewCell.h
| // IphoneBIMe
| //
| // Created by ZJF on 2020/4/2.
| // Copyright © 2020 ProBIM. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @class PBArtifactsModel;
| @class PBETaskModel;
| NS_ASSUME_NONNULL_BEGIN
|
| @interface PBStructureTableViewCell : UITableViewCell
| @property (nonatomic, strong) NSDictionary *dict;
| @property (nonatomic, copy) void(^NextLevelBlock)(void);
| @property (nonatomic, strong) PBArtifactsModel *artifactsModel;
| @property (nonatomic, strong) PBETaskModel *taskModel;
| @end
|
| NS_ASSUME_NONNULL_END
|
|