//
|
// PBIssueDetailModel.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2018/8/24.
|
// Copyright © 2018年 ProBIM. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
|
@interface PBIssueDetailModel : NSObject
|
@property (nonatomic, strong) NSArray *activities;
|
@property (nonatomic, assign) BOOL isIssueManager;
|
@property (nonatomic, strong) NSDictionary *issueObj;
|
@property (nonatomic, copy) NSString *modelname;
|
@property (nonatomic, strong) NSArray *relationFiles;
|
@property (nonatomic, strong) NSArray *base_files;
|
@property (nonatomic, strong) NSArray *comments;
|
@property (nonatomic, strong) NSArray *joiners;
|
@property (nonatomic, strong) NSArray *tagList;
|
/*
|
activities
|
isIssueManager : false
|
issueObj
|
modelname : ""
|
relationFiles
|
base_files
|
comments
|
joiners
|
tagList
|
*/
|
@end
|