// // HomeChatListModel.h // tongxin // // Created by ecell on 2023/5/18. // Copyright © 2023 xTT. All rights reserved. // #import #import NS_ASSUME_NONNULL_BEGIN @interface HomeChatListModel : NSObject /// 群ID @property (nonatomic, strong) NSString *groupid; @property (nonatomic, strong) NSString *creator; /// 群设备 @property (nonatomic, strong) NSMutableArray *devices; /// 群成员 @property (nonatomic, strong) NSMutableArray *members; /// 头像 @property (nonatomic ,strong) NSString *avator; /// 最后一条信息 @property (nonatomic ,strong) NSDictionary *message; /// 名称 @property (nonatomic ,strong) NSString *name; /// 手机号(单聊) @property (nonatomic ,strong) NSString *phone; /// 设备号(单聊) @property (nonatomic ,strong) NSString *imei; ///聊天群 未读 角标 @property (nonatomic, assign) NSInteger msgNum; @end NS_ASSUME_NONNULL_END