23 lines
423 B
Objective-C
23 lines
423 B
Objective-C
//
|
|
// EQNAreaCheck.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 09/10/18.
|
|
// Copyright © 2020 Earthquake Network. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface EQNAreaCheck : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *total;
|
|
@property (nonatomic, strong) NSString *active;
|
|
|
|
- (instancetype)initWithInfo:(NSArray *)info;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|