17 lines
463 B
C#
17 lines
463 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Impresion
|
||
|
|
{
|
||
|
|
public class UpdateDetalleSeccionTiradaDto
|
||
|
|
{
|
||
|
|
// ID del registro en bob_RegPublicaciones.
|
||
|
|
// Si es 0 o null, es una nueva sección a añadir.
|
||
|
|
public int IdRegPublicacionSeccion { get; set; }
|
||
|
|
|
||
|
|
[Required]
|
||
|
|
public int IdSeccion { get; set; }
|
||
|
|
|
||
|
|
[Required, Range(1, 1000)]
|
||
|
|
public int CantPag { get; set; }
|
||
|
|
}
|
||
|
|
}
|