12 lines
412 B
C#
12 lines
412 B
C#
|
|
namespace GestionIntegral.Api.Models.Impresion
|
||
|
|
{
|
||
|
|
public class RegPublicacionSeccion
|
||
|
|
{
|
||
|
|
public int IdTirada { get; set; } // Id_Tirada (PK, Identity en bob_RegPublicaciones)
|
||
|
|
public int IdPublicacion { get; set; }
|
||
|
|
public int IdSeccion { get; set; }
|
||
|
|
public int CantPag { get; set; }
|
||
|
|
public DateTime Fecha { get; set; }
|
||
|
|
public int IdPlanta { get; set; }
|
||
|
|
}
|
||
|
|
}
|