Ya perdí el hilo de los cambios pero ahi van.

This commit is contained in:
2025-05-23 15:47:39 -03:00
parent e7e185a9cb
commit 3c1fe15b1f
141 changed files with 9764 additions and 190 deletions

View File

@@ -0,0 +1,16 @@
using System.ComponentModel.DataAnnotations;
namespace GestionIntegral.Api.Dtos.Distribucion
{
public class UpdateControlDevolucionesDto
{
// IdEmpresa y Fecha no deberían cambiar para un registro existente. Si cambian, es un nuevo registro.
[Required, Range(0, int.MaxValue)]
public int Entrada { get; set; }
[Required, Range(0, int.MaxValue)]
public int Sobrantes { get; set; }
[StringLength(250)]
public string? Detalle { get; set; }
[Required, Range(0, int.MaxValue)]
public int SinCargo { get; set; }
}
}