123456789101112131415161718192021 |
- //
- // DRCollectionTicketCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/24.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DRCollectionModel.h"
- #import "DRHistoryModel.h"
- typedef void (^SimilarClick)(void);
- @interface DRCollectionTicketCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) DRCollectionModel *model;
- @property (nonatomic, strong) DRHistoryModel *historyModel;
- @property (nonatomic, copy) SimilarClick similarClick;
- @end
|