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