chatmessageCell.h 310 B

123456789101112131415
  1. #import <UIKit/UIKit.h>
  2. #import "OrderMessageModel.h"
  3. @class chatmessageModel;
  4. @interface chatmessageCell : UITableViewCell
  5. @property(nonatomic,strong)chatmessageModel *model;
  6. @property(nonatomic,strong)OrderMessageModel *ordermodel;
  7. +(chatmessageCell *)cellWithTableView:(UITableView *)tableView;
  8. @end