15 lines
259 B
Objective-C
15 lines
259 B
Objective-C
//
|
|
// Photo.h
|
|
// PXSourceList
|
|
//
|
|
// Created by Alex Rozanski on 27/01/2014.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/* A model class for illustration purposes that could be used for storing information about a photo. */
|
|
@interface Photo : NSObject
|
|
|
|
@end
|