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
908 B
47 lines
908 B
1 year ago
|
//
|
||
|
// ChatListModel.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by ecell on 2023/7/13.
|
||
|
// Copyright © 2023 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "baseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface ChatListModel : baseModel
|
||
|
|
||
|
/// 群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
|