about page now gets information from service

This commit is contained in:
Senad Uka
2014-09-07 07:18:07 +02:00
parent 90d0d8561b
commit 376072712a
15 changed files with 522 additions and 106 deletions

View File

@@ -0,0 +1,20 @@
//
// FESAboutEntry.h
// FestivalHelper
//
// Created by Hamo Hapic on 06/09/14.
// Copyright (c) 2014 Senad Uka. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface FESAboutEntry : NSObject
@property (assign) NSInteger aboutId;
@property (strong) NSString *aboutFestivalName;
@property (strong) NSString *aboutDescription;
@property (strong) NSString *aboutAppRateUrl;
-(id)initWithJSONData:(NSDictionary*)aboutData;
@end