//
|
// PBChooseArtifactsCell.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2020/9/24.
|
// Copyright © 2020 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
@class PBETaskInfoModel;
|
@class PBSchedulePlanModel;
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface PBChooseTasksCell : UITableViewCell
|
@property (nonatomic, strong) PBETaskInfoModel *taskInfoModel;
|
@property (nonatomic, strong) PBSchedulePlanModel *planModel;
|
@property (nonatomic, copy) void (^nextBlock)(void);
|
@property (nonatomic, copy) void (^saveBlock)(BOOL isSave);
|
@end
|
|
NS_ASSUME_NONNULL_END
|