22 lines
508 B
Objective-C
22 lines
508 B
Objective-C
//
|
|
// FESScheduleFilm.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 31/08/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface FESScheduleFilm : NSObject
|
|
|
|
@property (assign) NSInteger scheduleFilmId;
|
|
@property (strong) NSString *scheduleFilmTitle;
|
|
@property (strong) NSString *scheduleFilmVenue;
|
|
@property (strong) NSString *scheduleFilmTime;
|
|
@property (strong) NSString *scheduleFilmDuration;
|
|
|
|
-(id)initWithJSONData:(NSDictionary*)data;
|
|
|
|
@end
|