Files
FunctionalReactivePixels/FRP/FRPPhotoViewModel.h
2013-12-26 08:23:15 -05:00

22 lines
381 B
Objective-C

//
// FRPPhotoViewModel.h
// FRP
//
// Created by Ash Furrow on 10/22/2013.
// Copyright (c) 2013 Ash Furrow. All rights reserved.
//
#import <Foundation/Foundation.h>
@class FRPPhotoModel;
@interface FRPPhotoViewModel : RVMViewModel
@property (nonatomic, readonly) FRPPhotoModel *model;
@property (nonatomic, readonly) UIImage *photoImage;
-(NSString *)photoName;
@end