EMChatroomOptions.h 609 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // EMChatroomOptions.h
  3. // HyphenateSDK
  4. //
  5. // Created by XieYajie on 09/01/2017.
  6. // Copyright © 2017 easemob.com. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * \~chinese
  11. * @abstract 聊天室的设置选项。
  12. *
  13. * \~english
  14. * The options of a chatroom.
  15. */
  16. @interface EMChatroomOptions : NSObject
  17. /**
  18. * \~chinese
  19. * 聊天室的最大成员数。取值范围 [3,5000],默认值 200。
  20. *
  21. * \~english
  22. * The maximum number of members in a chatroom. The value range is [3,5000], and the default value is 200.
  23. */
  24. @property (nonatomic) NSInteger maxUsersCount;
  25. @end