Piezometria.cs 507B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace WebApplication3.Models
  5. {
  6. public partial class Piezometria
  7. {
  8. public uint Id { get; set; }
  9. public uint? IdSimulacion { get; set; }
  10. public int StressPeriod{ get; set; }
  11. public int Layer { get; set; }
  12. public int Columns { get; set; }
  13. public int Rows { get; set; }
  14. public string Original { get; set; }
  15. public string Convertida { get; set; }
  16. }
  17. }