zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  PBViewsModel.h
//  IphoneBIMe
//
//  Created by zjf on 2018/7/23.
//  Copyright © 2018年 ProBIM. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface PBViewsModel : NSObject
@property (nonatomic, strong) NSString *ID;
@property (nonatomic, strong) NSString *Name;
@property (nonatomic, strong) NSString *ModelID;
@property (nonatomic, strong) NSString *Override;
@property (nonatomic, strong) NSString *Creator;
@property (nonatomic, strong) NSString *CreateTime;
@property (nonatomic, assign) BOOL IsDefault;
@property (nonatomic, strong) NSString *Editor;
@property (nonatomic, strong) NSString *EditTime;
@property (nonatomic, strong) NSString *Snapshot;
@property (nonatomic, strong) NSString *Viewpoints;
@property (nonatomic, assign) BOOL IsFromModel;
@property (nonatomic, strong) NSString *Categories;
@property (nonatomic, strong) NSString *Levels;
@property (nonatomic, strong) NSString *BaseViewID;
@end