using System; using System.Collections.Generic; using WebApplication3.Clases; #nullable disable namespace WebApplication3.Models { public partial class BalanceHidrico { public uint Id { get; set; } public uint? IdSimulacion { get; set; } public string TotalZona { get; set; } public string Zona { get; set; } public int? StressPeriod { get; set; } } }