NIMGroupedUsrInfo.h 543 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // NIMGroupedUsrInfo.h
  3. // NIM
  4. //
  5. // Created by Xuhui on 15/3/24.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import "NIMContactDefines.h"
  9. @interface NIMGroupUser:NSObject<NIMGroupMemberProtocol>
  10. - (instancetype)initWithUserId:(NSString *)userId;
  11. @end
  12. @interface NIMGroupTeamMember:NSObject<NIMGroupMemberProtocol>
  13. - (instancetype)initWithUserId:(NSString *)userId teamId:(NSString *)teamId;
  14. @end
  15. @interface NIMGroupTeam:NSObject<NIMGroupMemberProtocol>
  16. - (instancetype)initWithTeam:(NSString *)teamId;
  17. @end