chatListModel.h 524 B

12345678910111213141516171819202122232425
  1. //
  2. // chatListModel.h
  3. // shiku_im
  4. //
  5. // Created by os on 2020/6/29.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface chatListModel : NSObject
  10. @property (nonatomic,copy) NSString *id;
  11. @property (nonatomic,copy) NSString *icon;
  12. @property (nonatomic,copy) NSString *title;
  13. @property (nonatomic,copy) NSString *content;
  14. @property (nonatomic,copy) NSString *createTime;
  15. @property (nonatomic,copy) NSString *type;
  16. @property (nonatomic,assign) CGFloat cellHeight;
  17. @end