hch
3 天以前 2a011653190c36e6fb1f790b3819a1d6b0744aef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
//  SMPCQuickChannelShareInfo.h
//  SMPCQuickChannel
//
//  Created by xiaoxiao on 2019/2/19.
//  Copyright © 2019年 HanDong. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
 
 
@interface SMPCQuickChannelShareInfo : NSObject
 
@property (nonatomic, strong) NSString *type;       //分享类型 1.facebook分享连接 2.facebook分享图片 3.微信分享文本 4.微信分享图片
@property (nonatomic, strong) NSString *title;      //分享标题
@property (nonatomic, strong) NSString *content;    //分享内容
@property (nonatomic, strong) NSString *imgPath;    //分享图片本地地址
@property (nonatomic, strong) NSString *filePath;   //分享文件路径
@property (nonatomic, strong) NSString *imgUrl;     //分享图片网络地址
@property (nonatomic, strong) NSString *sencetype;  //发送场景 0 聊天界面,1 朋友圈,2 收藏
@property (nonatomic, strong) NSString *url;        //分享链接
@property (nonatomic, strong) NSString *shareTo;    //分享到哪里
@property (nonatomic, strong) NSString *extenal;    //额外备注
@property (nonatomic, assign) float     width;      //缩略图宽
@property (nonatomic, assign) float     height;     //缩略图高
 
 
@end