11 lines
		
	
	
		
			272 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			272 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.ComponentModel.DataAnnotations;
 | |
| 
 | |
| namespace GestionIntegral.Api.Dtos.Distribucion
 | |
| {
 | |
|     public class UpdateNovedadCanillaDto
 | |
|     {
 | |
|         // No se permite cambiar IdCanilla ni Fecha
 | |
|         [MaxLength(250)]
 | |
|         public string? Detalle { get; set; }
 | |
|     }
 | |
| } |