mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-04-28 12:04:56 +08:00
20 lines
477 B
Objective-C
20 lines
477 B
Objective-C
//
|
|
// FRPPhotoModel.h
|
|
// FRP
|
|
//
|
|
// Created by Ash Furrow on 10/13/2013.
|
|
// Copyright (c) 2013 Ash Furrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface FRPPhotoModel : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *photoName;
|
|
@property (nonatomic, strong) NSString *photographerName;
|
|
@property (nonatomic, strong) NSNumber *rating;
|
|
@property (nonatomic, strong) NSString *thumbnailURL;
|
|
@property (nonatomic, strong) NSData *thumbnailData;
|
|
|
|
@end
|