12345678910111213141516171819 |
- //
- // HCMyTicketCell.h
- // hc
- //
- // Created by hc on 2018/1/25.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HCMyTicketModel.h"
- #import "HCHistoryModel.h"
- typedef void (^SaimarClick) (void);
- @interface HCMyTicketCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) HCMyTicketModel *model;
- @property (nonatomic, copy) SaimarClick saimarClick;
- @end
|