hank
2017-05-03 537198848fe4ced24c8b39406bdd2d72730570bc
commit | author | age
dcdc07 1 //
W 2 //  WAFBShareVideoContent.h
3 //  WASdkIntfUI
4 //
5 //  Created by wuyx on 16/3/15.
6 //  Copyright © 2016年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import "WASharingContent.h"
11 #import "WASharePhoto.h"
12 #import "WAShareVideo.h"
13 /*!
14  @discussion WAFBShareVideoContent
15  - - -
16  */
17 @interface WAShareVideoContent : NSObject<WASharingContent>
18 /*!
19  @abstract The photo that represents the video.
20  @return The photo
21  */
22 @property (nonatomic, strong) WASharePhoto *previewPhoto;
23
24 /*!
25  @abstract The video to be shared.
26  @return The video
27  */
28 @property (nonatomic, strong) WAShareVideo *video;
29 @end