123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace WebApplication3.Clases
- {
- public class DatosPozoRecarga
- {
- public uint Id { get; set; }
- public string Nombre { get; set; }
- public uint? Acuifero { get; set; }
- public uint? Simulacion { get; set; }
- public string Minimo { get; set; }
- public string Maximo { get; set; }
- public string Latitud { get; set; }
- public string Longitud { get; set; }
- public TimeSerie[] Ts {get; set;}
- }
- }
|