ShareContentModel.h 515 Bytes
//
//  ShareContentModel.h
//  IVTMeLiveTwo
//
//  Created by XRG on 16/8/11.
//  Copyright © 2016年 QLQ. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface ShareContentModel : NSObject

/**
 *  分享的title
 */
@property (nonatomic,copy) NSString *shareTitle;
/**
 *  分享内容
 */
@property (nonatomic,copy) NSString *shareContent;
/**
 *  图片url
 */
@property (nonatomic,copy) NSString *sharePictureURL;
/**
 *  分享链接
 */
@property (nonatomic,copy) NSString *shareURL;

@end