HyphenateChatSDK  4.6.0
EMContact.h
1 //
2 // EMContact.h
3 // HyphenateChat
4 //
5 // Created by li xiaoming on 2023/8/30.
6 // Copyright © 2023 easemob.com. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
18 @interface EMContact : NSObject <NSCoding>
19 
27 @property (nonatomic,strong,readonly) NSString* _Nonnull userId;
28 
36 @property (nonatomic,strong) NSString* _Nullable remark;
37 
56 - (instancetype)initWithUserId:(NSString* _Nonnull)userId remark:(NSString* _Nullable)remark;
57 @end
NSString *_Nullable remark
Definition: EMContact.h:36
NSString *_Nonnull userId
Definition: EMContact.h:27
Definition: EMContact.h:18