4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
24 lines
627 B
Objective-C
24 lines
627 B
Objective-C
//
|
|
// Tsunami.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 12/11/18.
|
|
// Copyright © 2018 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface Tsunami : NSObject
|
|
|
|
@property (nonatomic, strong) NSNumber *Id;
|
|
@property (nonatomic, strong) NSString *color;
|
|
@property (nonatomic, strong) NSString *date;
|
|
@property (nonatomic, strong) NSURL *link;
|
|
@property (nonatomic, strong) NSString *message;
|
|
@property (nonatomic, strong) NSString *receiver;
|
|
@property (nonatomic, strong) NSString *differenza;
|
|
|
|
-(id)initWithInfo:(NSDictionary *)info;
|
|
-(void)setMessage:(NSString *)message;
|
|
@end
|