// // PBResultModel.h // IphoneBIMe // // Created by zjf on 2018/11/27. // Copyright © 2018 ProBIM. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface PBResultModel : NSObject @property (nonatomic, assign) int Type; @property (nonatomic, assign) int ErrorCode; @property (nonatomic, copy) NSString *Message; @property (nonatomic, strong) id ResultData; @end NS_ASSUME_NONNULL_END