SSDKContentEntity.h 648 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // SSDKContentEntity.h
  3. // ShareSDK
  4. //
  5. // Created by 冯 鸿杰 on 15/2/9.
  6. // Copyright (c) 2015年 掌淘科技. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * 内容实体
  11. */
  12. @interface SSDKContentEntity : NSObject
  13. /**
  14. * 内容标识
  15. */
  16. @property (nonatomic, copy) NSString *cid;
  17. /**
  18. * 分享文本
  19. */
  20. @property (nonatomic, copy) NSString *text;
  21. /**
  22. * 分享图片列表,元素为SSDKImage
  23. */
  24. @property (nonatomic, retain) NSArray *images;
  25. /**
  26. * 分享链接列表,元素为NSURL
  27. */
  28. @property (nonatomic, retain) NSArray *urls;
  29. /**
  30. * 原始数据
  31. */
  32. @property (nonatomic, retain) id rawData;
  33. @end