NEMeetingKit V4.8.0
载入中...
搜索中...
未找到
NEContact.h
浏览该文件的文档.
1// Copyright (c) 2022 NetEase, Inc. All rights reserved.
2// Use of this source code is governed by a MIT license that can be
3// found in the LICENSE file.
4
5#import <Foundation/Foundation.h>
6
7NS_ASSUME_NONNULL_BEGIN
8
12@interface NEContact : NSObject
16@property(nonatomic, copy) NSString *userUuid;
20@property(nonatomic, copy) NSString *name;
24@property(nonatomic, copy) NSString *avatar;
28@property(nonatomic, copy) NSString *dept;
32@property(nonatomic, copy) NSString *phoneNumber;
33
34@end
35
39@interface NEContactsInfoResult : NSObject
43@property(nonatomic, strong) NSArray<NEContact *> *foundList;
47@property(nonatomic, strong) NSArray<NSString *> *notFoundList;
48
49@end
50
51NS_ASSUME_NONNULL_END
Definition NEContact.h:13
NSString * avatar
Definition NEContact.h:24
NSString * phoneNumber
Definition NEContact.h:32
NSString * name
Definition NEContact.h:20
NSString * userUuid
Definition NEContact.h:16
NSString * dept
Definition NEContact.h:28
Definition NEContact.h:40