21 lines
449 B
Objective-C
21 lines
449 B
Objective-C
//
|
|
// 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
|