You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
971 B
47 lines
971 B
// |
|
// HomeChatListModel.h |
|
// tongxin |
|
// |
|
// Created by ecell on 2023/5/18. |
|
// Copyright © 2023 xTT. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
#import <UIKit/UIKit.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface HomeChatListModel : NSObject<NSCoding,NSCopying> |
|
|
|
/// 群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
|
|
|