WFCCFriendRequest.h 638 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // WFCCFriendRequest.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/10/17.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. 好友请求
  11. */
  12. @interface WFCCFriendRequest : NSObject
  13. /**
  14. 方向
  15. */
  16. @property(nonatomic, assign)int direction;
  17. /**
  18. ID
  19. */
  20. @property(nonatomic, strong)NSString *target;
  21. /**
  22. 请求说明
  23. */
  24. @property(nonatomic, strong)NSString *reason;
  25. /**
  26. 接受状态
  27. */
  28. @property(nonatomic, assign)int status;
  29. /**
  30. 已读
  31. */
  32. @property(nonatomic, assign)int readStatus;
  33. /**
  34. 发起时间
  35. */
  36. @property(nonatomic, assign)long long timestamp;
  37. @end