venues now have correct information on them

This commit is contained in:
Senad Uka
2014-09-05 07:27:19 +02:00
parent 0e1b3048ce
commit 7bea7f47fc
15 changed files with 475 additions and 64 deletions

View File

@@ -0,0 +1,21 @@
//
// FESVenueEntry.h
// FestivalHelper
//
// Created by Hamo Hapic on 04/09/14.
// Copyright (c) 2014 Senad Uka. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface FESVenueEntry : NSObject
-(id)initWithJSONData:(NSDictionary*)data;
@property (assign) NSInteger venueEntryId;
@property (strong) NSString *venueName;
@property (strong) NSString *venueAddress;
@property (strong) NSString *venueCapacity;
@end