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
28
29
30
31
32
//
//  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