//
|
// PBunPlanTaskTableViewCell.h
|
// IphoneBIMe
|
//
|
// Created by ZhangJF on 2022/8/29.
|
// Copyright © 2022 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
@class PBTaskScheduleModel;
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface PBunPlanTaskTableViewCell : UITableViewCell
|
@property (nonatomic, copy) void(^DeleteBlock)(void);
|
@property (nonatomic, strong) PBTaskScheduleModel *taskScheduleModel;
|
@property (nonatomic, assign) NSInteger taskIndex;
|
@end
|
|
NS_ASSUME_NONNULL_END
|