| 123456789101112131415 |
- #import <UIKit/UIKit.h>
- #import "OrderMessageModel.h"
- @class chatmessageModel;
- @interface chatmessageCell : UITableViewCell
- @property(nonatomic,strong)chatmessageModel *model;
- @property(nonatomic,strong)OrderMessageModel *ordermodel;
- +(chatmessageCell *)cellWithTableView:(UITableView *)tableView;
- @end
|