10 lines
334 B
C#
10 lines
334 B
C#
|
|
namespace GestionIntegral.Api.Models.Distribucion
|
||
|
|
{
|
||
|
|
public class Zona
|
||
|
|
{
|
||
|
|
public int IdZona { get; set; } // Coincide con PK de dist_dtZonas
|
||
|
|
public string Nombre { get; set; } = string.Empty;
|
||
|
|
public string? Descripcion { get; set; }
|
||
|
|
public bool Estado { get; set; } // Para el soft delete
|
||
|
|
}
|
||
|
|
}
|