8 lines
		
	
	
		
			197 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			197 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace GestionIntegral.Api.Dtos.Empresas
 | 
						|
{
 | 
						|
    public class EmpresaDropdownDto
 | 
						|
    {
 | 
						|
        public int IdEmpresa { get; set; }
 | 
						|
        public string Nombre { get; set; } = string.Empty;
 | 
						|
    }
 | 
						|
} |