HyphenateSDK  3.6.1
EMConferenceAttribute.h
1 //
2 // EMConferenceAttribute.h
3 // HyphenateSDK
4 //
5 // Created by 杜洁鹏 on 2019/5/17.
6 // Copyright © 2019 easemob.com. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "EMCallEnum.h"
11 
12 NS_ASSUME_NONNULL_BEGIN
13 
14 @interface EMConferenceAttribute : NSObject
15 @property (nonatomic, readonly) EMConferenceAttributeAction action;
16 @property (nonatomic, copy, readonly) NSString *key;
17 @property (nonatomic, copy, readonly) NSString *value;
18 
19 @end
20 
21 NS_ASSUME_NONNULL_END
Definition: EMConferenceAttribute.h:14