DatosPozoRecarga.cs 571B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WebApplication3.Clases
  6. {
  7. public class DatosPozoRecarga
  8. {
  9. public uint Id { get; set; }
  10. public string Nombre { get; set; }
  11. public uint? Acuifero { get; set; }
  12. public uint? Simulacion { get; set; }
  13. public string Minimo { get; set; }
  14. public string Maximo { get; set; }
  15. public string Latitud { get; set; }
  16. public string Longitud { get; set; }
  17. public TimeSerie[] Ts {get; set;}
  18. }
  19. }