Acuifero.cs 611B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace WebApplication3.Models
  5. {
  6. public partial class Acuifero
  7. {
  8. public uint Id { get; set; }
  9. public string Nombre { get; set; }
  10. public string Fichero { get; set; }
  11. public string WorldOriginX { get; set; }
  12. public string WorldOriginY { get; set; }
  13. public string Angle { get; set; }
  14. public string Length { get; set; }
  15. public string Height { get; set; }
  16. public string RechargeGeometry { get; set; }
  17. public string RechargeColorMap { get; set; }
  18. }
  19. }