lpw
2021-04-20 b19a78b27247f5f0761c35b5b3e8a41876eabb05
frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h
@@ -18,18 +18,23 @@
#import <Foundation/Foundation.h>
#import <FBSDKShareKit/FBSDKSharingContent.h>
#import "FBSDKSharingContent.h"
NS_ASSUME_NONNULL_BEGIN
@class FBSDKSharePhoto;
/**
  A model for photo content to be shared.
 */
NS_SWIFT_NAME(SharePhotoContent)
@interface FBSDKSharePhotoContent : NSObject <FBSDKSharingContent>
/**
  Photos to be shared.
 @return Array of the photos (FBSDKSharePhoto)
 */
@property (nonatomic, copy) NSArray *photos;
@property (nonatomic, copy) NSArray<FBSDKSharePhoto *> *photos;
/**
  Compares the receiver to another photo content.
@@ -39,3 +44,5 @@
- (BOOL)isEqualToSharePhotoContent:(FBSDKSharePhotoContent *)content;
@end
NS_ASSUME_NONNULL_END