EMConferenceAttribute.h 482 B

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