14 lines
443 B
C#
14 lines
443 B
C#
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; }
|
|
}
|
|
} |