Files
eqn.ios/Sources/Earthquake Network/model/Tsunami.h
T
Andrea Busi 4d8bbdc7ef Production version
Add to Git the current app version (the same available in the OriginalZip folder)
2020-07-24 15:33:53 +02:00

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