22 lines
436 B
Objective-C
22 lines
436 B
Objective-C
//
|
|
// 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
|