13 lines
		
	
	
		
			376 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			376 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace GestionIntegral.Api.Dtos.Distribucion
 | 
						|
{
 | 
						|
    public class NovedadCanillaDto
 | 
						|
    {
 | 
						|
        public int IdNovedad { get; set; }
 | 
						|
        public int IdCanilla { get; set; }
 | 
						|
        public string NombreCanilla { get; set; } = string.Empty; // Para mostrar en UI
 | 
						|
        public DateTime Fecha { get; set; }
 | 
						|
        public string? Detalle { get; set; }
 | 
						|
    }
 | 
						|
} |