19 lines
520 B
C#
19 lines
520 B
C#
|
|
using System;
|
||
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Distribucion
|
||
|
|
{
|
||
|
|
public class CreateSalidaOtroDestinoDto
|
||
|
|
{
|
||
|
|
[Required]
|
||
|
|
public int IdPublicacion { get; set; }
|
||
|
|
[Required]
|
||
|
|
public int IdDestino { get; set; }
|
||
|
|
[Required]
|
||
|
|
public DateTime Fecha { get; set; }
|
||
|
|
[Required, Range(1, int.MaxValue)]
|
||
|
|
public int Cantidad { get; set; }
|
||
|
|
[StringLength(150)]
|
||
|
|
public string? Observacion { get; set; }
|
||
|
|
}
|
||
|
|
}
|