//
//  NSObject+AlbumItem.h
//  gengmei_flutter_plugin
//
//  Created by Apple on 2019/9/9.
//

#import <Foundation/Foundation.h>
#import <Photos/Photos.h>

@interface AlbumItem : NSObject

/// 相册
@property (nonatomic, strong) PHAssetCollection *collection;
/// 第一个相片
@property (nonatomic, strong) PHAsset *firstAsset;
/// 第一个相片
@property (nonatomic, strong) PHFetchResult<PHAsset *> *assets;
/// 相册名
@property (nonatomic, copy) NSString *collectionTitle;
/// 总数
@property (nonatomic) int collectionNumber;
/// 选中的图片
@property (nonatomic, strong) NSMutableArray<NSNumber *> *selectRows;

@end