MessagecurrencyCell.h 533 B

1234567891011121314151617181920
  1. //
  2. // MessagecurrencyCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/12/18.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "EaseImageView.h"
  10. #import "TaoXinModel.h"
  11. @interface MessagecurrencyCell : UITableViewCell
  12. @property(strong,nonatomic)UIImageView *image;
  13. @property(strong,nonatomic)UILabel *title;
  14. @property(strong,nonatomic)UILabel *content;
  15. @property(strong,nonatomic)UILabel *time;
  16. @property(strong,nonatomic)UILabel *corner;
  17. - (void)assignment:(TaoXinModel *)model;
  18. @end