1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //
| // PBIssueDrawingsShowController.h
| // IphoneBIMe
| //
| // Created by zjf on 2019/1/11.
| // Copyright © 2019 ProBIM. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @class PBIssueAddModel;
| @class PBDrawingsModel;
| @class PBModelsModel;
|
| @interface PBIssueDrawingsShowController : UIViewController
| @property (nonatomic, strong) PBIssueAddModel *issueAddModel;
| @property (nonatomic, strong) PBDrawingsModel *drawingsModel;
| @property (nonatomic, strong) PBModelsModel *modelsModel;
| @end
|
|