-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPico.h
27 lines (22 loc) · 882 Bytes
/
Pico.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Pico.h
// CharruaSurfReport
//
// Created by norman martinez on 03/09/14.
// Copyright (c) 2014 NMDevelopment. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Pico : NSManagedObject
@property (nonatomic, retain) NSDate * fechaAlta;
@property (nonatomic, retain) NSDecimalNumber * latitud;
@property (nonatomic, retain) NSDecimalNumber * longitud;
@property (nonatomic, retain) NSString * nombrePico;
@property (nonatomic, retain) NSNumber * hora;
@property (nonatomic, retain) NSDecimalNumber * temperatura;
@property (nonatomic, retain) NSDecimalNumber * temperaturaAgua;
@property (nonatomic, retain) NSNumber * direccionSwell;
@property (nonatomic, retain) NSDecimalNumber * tamanoSwell;
@property (nonatomic, retain) NSDecimalNumber * periodoSwell;
@property (nonatomic, retain) NSNumber * direccionViento;
@end