QYPOPSessionInfo.h 520 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // QYSessionInfo.h
  3. // YSFSDK
  4. //
  5. // Created by Netease on 16/12/2.
  6. // Copyright (c) 2017 Netease. All rights reserved.
  7. //
  8. #import "QYSessionInfo.h"
  9. /**
  10. * 平台电商专用;会话列表中的会话详情信息
  11. */
  12. @interface QYSessionInfo (POP)
  13. /**
  14. * 会话ID,可以是商铺ID等
  15. */
  16. @property (nonatomic, copy) NSString *shopId;
  17. /**
  18. * 会话头像URL
  19. */
  20. @property (nonatomic, copy) NSString *avatarImageUrlString;
  21. /**
  22. * 会话名称
  23. */
  24. @property (nonatomic, copy) NSString *sessionName;
  25. @end