//
|
// 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
|