11 lines
340 B
C#
11 lines
340 B
C#
|
|
namespace GestionIntegral.Api.Models.Impresion
|
||
|
|
{
|
||
|
|
public class RegTirada
|
||
|
|
{
|
||
|
|
public int IdRegistro { get; set; } // Id_Registro (PK, Identity)
|
||
|
|
public int Ejemplares { get; set; }
|
||
|
|
public int IdPublicacion { get; set; }
|
||
|
|
public DateTime Fecha { get; set; }
|
||
|
|
public int IdPlanta { get; set; }
|
||
|
|
}
|
||
|
|
}
|