Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Distribucion/LiquidarMovimientosCanillaDto.cs

14 lines
443 B
C#
Raw Normal View History

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; }
}
}