Files
FunctionalReactivePixels/FRP/FRPFullSizePhotoViewModel.h
2013-10-22 20:31:57 -04:00

23 lines
551 B
Objective-C

//
// FRPFullSizePhotoViewModel.h
// FRP
//
// Created by Ash Furrow on 10/21/2013.
// Copyright (c) 2013 Ash Furrow. All rights reserved.
//
#import <Foundation/Foundation.h>
@class FRPPhotoModel;
@interface FRPFullSizePhotoViewModel : NSObject
-(instancetype)initWithPhotoModelArray:(NSArray *)photoModelArray initialPhotoIndex:(NSInteger)initialPhotoIndex;
@property (nonatomic, readonly) NSInteger initialPhotoIndex;
@property (nonatomic, readonly) NSString *initialPhotoName;
-(FRPPhotoModel *)photoModelAtIndex:(NSInteger)index;
@end