added entry and film model
This commit is contained in:
24
FestivalHelper/schedule/FESSCheduleEntry.h
Normal file
24
FestivalHelper/schedule/FESSCheduleEntry.h
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user