25 lines
527 B
Objective-C
25 lines
527 B
Objective-C
//
|
|
// FESSCheduleEntry.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 31/08/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class FESScheduleFilm;
|
|
|
|
@interface FESSCheduleEntry : NSObject
|
|
|
|
-(id)initWithJSONData:(NSDictionary*)data;
|
|
|
|
@property (assign) NSInteger scheduleEntryId;
|
|
@property (strong) NSString *scheduleDayOfWeek;
|
|
@property (strong) NSString *scheduleDate;
|
|
@property (strong) NSString *scheduleYear;
|
|
@property (strong) NSMutableArray *scheduleFilms;
|
|
|
|
|
|
@end
|