12345678910111213141516171819202122 |
- //
- // WorkFlowSearchItemCell.h
- // smartRhino
- //
- // Created by Android on 2019/12/17.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class LocationsModel;
- NS_ASSUME_NONNULL_BEGIN
- ///我的会议筛选项Cell
- @interface WorkFlowSearchItemCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIButton *itemBtn;
- @property (copy, nonatomic) void(^selectedBlock)(LocationsModel *model);
- - (void)setData:(LocationsModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|