using System; using System.Collections.Generic; #nullable disable namespace WebApplication3.Models { public partial class Piezometria { public uint Id { get; set; } public uint? IdSimulacion { get; set; } public int StressPeriod{ get; set; } public int Layer { get; set; } public int Columns { get; set; } public int Rows { get; set; } public string Original { get; set; } public string Convertida { get; set; } } }