namespace GestionIntegral.Api.Dtos.Empresas { public class EmpresaDto { public int IdEmpresa { get; set; } public string Nombre { get; set; } = string.Empty; public string? Detalle { get; set; } } }