12345678910111213141516171819202122232425 |
- //
- // chatListModel.h
- // shiku_im
- //
- // Created by os on 2020/6/29.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <Foundation/Foundation.h>
-
- @interface chatListModel : NSObject
- @property (nonatomic,copy) NSString *id;
- @property (nonatomic,copy) NSString *icon;
- @property (nonatomic,copy) NSString *title;
- @property (nonatomic,copy) NSString *content;
- @property (nonatomic,copy) NSString *createTime;
- @property (nonatomic,copy) NSString *type;
- @property (nonatomic,assign) CGFloat cellHeight;
- @end
-
|