Ya perdí el hilo de los cambios pero ahi van.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
namespace GestionIntegral.Api.Dtos.Distribucion
|
||||
{
|
||||
public class LiquidarMovimientosCanillaRequestDto // Para liquidar uno o más movimientos
|
||||
{
|
||||
[Required]
|
||||
[MinLength(1)]
|
||||
public List<int> IdsPartesALiquidar { get; set; } = new List<int>();
|
||||
[Required]
|
||||
public DateTime FechaLiquidacion { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user