27 lines
687 B
Objective-C
27 lines
687 B
Objective-C
//
|
|
// FESFilmEntry.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 06/09/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface FESFilmEntry : NSObject
|
|
|
|
@property (assign) NSInteger filmId;
|
|
@property (strong) NSString *filmTitle;
|
|
@property (strong) NSString *filmTitleTranslation;
|
|
@property (strong) NSString *filmProgram;
|
|
@property (strong) NSString *filmDate;
|
|
@property (strong) NSString *filmTime;
|
|
@property (strong) NSString *filmYear;
|
|
@property (strong) NSString *filmDescription;
|
|
@property (strong) NSString *filmDirectors;
|
|
@property (strong) NSString *filmTagLines;
|
|
|
|
-(id)initWithJSONData:(NSDictionary*)filmData;
|
|
|
|
@end
|