NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatCommentator.h
浏览该文件的文档.
1//
2// Created by 陈吉力 on 2024/1/25.
3// Copyright (c) 2024 Netease. All rights reserved.
4//
5
6#import <Foundation/Foundation.h>
7
8@interface NIMQChatCommentator: NSObject
9/// 账号
10@property(nonatomic, copy, readonly)NSString *accountId;
11/// 昵称
12@property(nonatomic, copy, readonly)NSString *nick;
13/// 头像
14@property(nonatomic, copy, readonly)NSString *avatar;
15/// 操作时间
16@property(nonatomic, assign, readonly) NSTimeInterval createTime;
17@end
Definition: NIMQChatCommentator.h:9
NSTimeInterval createTime
操作时间
Definition: NIMQChatCommentator.h:16
NSString * avatar
头像
Definition: NIMQChatCommentator.h:14
NSString * accountId
账号
Definition: NIMQChatCommentator.h:10
NSString * nick
昵称
Definition: NIMQChatCommentator.h:12