All checks were successful
		
		
	
	Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 6m18s
				
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			479 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			479 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace GestionIntegral.Api.Dtos.Distribucion
 | 
						|
{
 | 
						|
    public class PublicacionDto
 | 
						|
    {
 | 
						|
        public int IdPublicacion { get; set; }
 | 
						|
        public string Nombre { get; set; } = string.Empty;
 | 
						|
        public string? Observacion { get; set; }
 | 
						|
        public int IdEmpresa { get; set; }
 | 
						|
        public string NombreEmpresa { get; set; } = string.Empty; // Para mostrar en UI
 | 
						|
        public bool CtrlDevoluciones { get; set; }
 | 
						|
        public bool? Habilitada { get; set; } 
 | 
						|
    }
 | 
						|
} |