4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
19 lines
358 B
Objective-C
19 lines
358 B
Objective-C
//
|
|
// EQNAreaCheck.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 09/10/18.
|
|
// Copyright © 2018 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface EQNAreaCheck : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *total;
|
|
@property (nonatomic, strong) NSString *active;
|
|
|
|
-(id)initWithInfo:(NSArray *)info;
|
|
|
|
@end
|