12 lines
470 B
C#
12 lines
470 B
C#
|
|
namespace GestionIntegral.Api.Models.Impresion
|
||
|
|
{
|
||
|
|
public class PlantaHistorico
|
||
|
|
{
|
||
|
|
public int IdPlanta { get; set; } // FK a bob_dtPlantas
|
||
|
|
public string Nombre { get; set; } = string.Empty;
|
||
|
|
public string Detalle { get; set; } = string.Empty;
|
||
|
|
public int IdUsuario { get; set; }
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty; // "Insertada", "Modificada", "Eliminada"
|
||
|
|
}
|
||
|
|
}
|