using System; using System.Collections.Generic; using WebApplication3.Clases; #nullable disable namespace WebApplication3.Models { public partial class ConexionZonasOut { public uint Id { get; set; } public uint? IdDatosBalanceOut { get; set; } public string From { get; set; } public string To { get; set; } public string Value { get; set; } } }