lpw
2024-09-25 2f0847c51cfe186abd2c4fc554108edc1890d222
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>
2a54d4 10 #import <WASdkIntf/WASharingContent.h>
L 11 #import <WASdkIntf/WASharePhoto.h>
12 #import <WASdkIntf/WAShareVideo.h>
dcdc07 13 /*!
W 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