14 lines
382 B
C#
14 lines
382 B
C#
|
|
namespace GestionIntegral.Api.Models.Distribucion
|
||
|
|
{
|
||
|
|
public class OtroDestino
|
||
|
|
{
|
||
|
|
// Columna: Id_Destino (PK, Identity)
|
||
|
|
public int IdDestino { get; set; }
|
||
|
|
|
||
|
|
// Columna: Nombre (varchar(100), NOT NULL)
|
||
|
|
public string Nombre { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
// Columna: Obs (varchar(250), NULL)
|
||
|
|
public string? Obs { get; set; }
|
||
|
|
}
|
||
|
|
}
|