29 lines
708 B
Objective-C
29 lines
708 B
Objective-C
//
|
|
// EQNReteSmartphone.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 09/10/18.
|
|
// Copyright © 2018 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface EQNReteSmartphone : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *eq;
|
|
@property (nonatomic, strong) NSString *eq_p;
|
|
@property (nonatomic, strong) NSNumber *green;
|
|
@property (nonatomic, strong) NSNumber *g_man;
|
|
@property (nonatomic, strong) NSNumber *y_man;
|
|
@property (nonatomic, strong) NSNumber *r_man;
|
|
@property (nonatomic, strong) NSString *diff;
|
|
@property (nonatomic) BOOL subscriptionsDiscounted;
|
|
|
|
- (instancetype)initWithInfo:(NSArray *)list;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|