//
|
// PBAddCommentsController.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2018/9/3.
|
// Copyright © 2018年 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
@class PBProjectModel;
|
@class PBIssueDetailModel;
|
@class PBIssueListModel;
|
@interface PBAddCommentsController : UIViewController
|
@property (nonatomic, copy) void(^SaveCommentsBlock)(NSDictionary *commentsDic);
|
@property (nonatomic, strong) PBProjectModel *projectModel;
|
@property (nonatomic, strong) PBIssueDetailModel *issueDetailModel;
|
@property (nonatomic, strong) PBIssueListModel *issueListModel;
|
@property (nonatomic, copy) NSString *talkId;
|
@end
|