9 lines
331 B
C#
9 lines
331 B
C#
|
|
namespace GestionIntegral.Api.Models.Impresion
|
||
|
|
{
|
||
|
|
public class Planta
|
||
|
|
{
|
||
|
|
public int IdPlanta { get; set; } // Coincide con PK de bob_dtPlantas
|
||
|
|
public string Nombre { get; set; } = string.Empty;
|
||
|
|
public string Detalle { get; set; } = string.Empty; // Asumiendo que no es null en BD según script
|
||
|
|
}
|
||
|
|
}
|