ShareModel.h 923 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ShareModel.h
  3. // ZCTest
  4. //
  5. // Created by GuoMs on 16/1/25.
  6. // Copyright © 2016年 guoms. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ShareModel : NSObject
  10. /**分享文字内容*/
  11. @property (nonatomic, copy) NSString *share_content;
  12. /**分享图片的下载路径*/
  13. @property (nonatomic, copy) NSString *share_imageUrl;
  14. /**分享的URL链接*/
  15. @property (nonatomic, copy) NSString *share_url;
  16. /**分享标题*/
  17. @property (nonatomic, copy) NSString *share_title;
  18. /**分享key*/
  19. @property (nonatomic, strong) NSNumber *share_key;
  20. @property (nonatomic, strong) NSNumber *w;
  21. @property (nonatomic, strong) NSNumber *h;
  22. // 是否需要把分享结果通知服务端
  23. @property (nonatomic, assign) BOOL isNotifiService;
  24. // 直播间ID
  25. @property (nonatomic, copy) NSString *roomIDStr;
  26. // 直播间聊天组ID
  27. @property (nonatomic, copy) NSString *imChatIDStr;
  28. @end