2
0

WFCCChatroomMemberInfo.h 379 B

123456789101112131415
  1. //
  2. // WFCCChatroomInfo.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain lee on 2018/8/24.
  6. // Copyright © 2018 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "WFCCJsonSerializer.h"
  10. @interface WFCCChatroomMemberInfo : WFCCJsonSerializer
  11. @property(nonatomic, assign)int memberCount;
  12. @property(nonatomic, strong)NSArray<NSString *> *members;
  13. @end