// // HCCollectionTicketCell.h // hc // // Created by hc on 2018/1/24. // Copyright © 2018年 hc. All rights reserved. // #import #import "HCCollectionModel.h" #import "HCHistoryModel.h" typedef void (^SimilarClick)(void); @interface HCCollectionTicketCell : UITableViewCell + (instancetype)cellWithTableView:(UITableView *)tableView; @property (nonatomic, strong) HCCollectionModel *model; @property (nonatomic, strong) HCHistoryModel *historyModel; @property (nonatomic, copy) SimilarClick similarClick; @end