NIMChatroomBeKickedResult.h 576 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // NIMChatroomBeKickedResult.h
  3. // NIMLib
  4. //
  5. // Created by Netease.
  6. // Copyright © 2018年 Netease. All rights reserved.
  7. //
  8. #import "NIMChatroomManagerProtocol.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. * 聊天室被踢结果
  12. */
  13. @interface NIMChatroomBeKickedResult : NSObject
  14. /**
  15. * 被踢的聊天室 Id
  16. */
  17. @property (nonatomic, copy) NSString *roomId;
  18. /**
  19. * 被踢的原因
  20. */
  21. @property (nonatomic, assign) NIMChatroomKickReason reason;
  22. /**
  23. * 被踢的扩展字段
  24. */
  25. @property (nonatomic, copy) NSString *ext;
  26. @end
  27. NS_ASSUME_NONNULL_END