Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Distribucion/EmpresaLookupDto.cs

8 lines
195 B
C#

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