namespace GestionIntegral.Api.Models.Distribucion { public class Canilla { public int IdCanilla { get; set; } // Id_Canilla (PK, Identity) public int? Legajo { get; set; } // Legajo (int, NULL) public string NomApe { get; set; } = string.Empty; // NomApe (varchar(100), NOT NULL) public string? Parada { get; set; } // Parada (varchar(150), NULL) public int IdZona { get; set; } // Id_Zona (int, NOT NULL) public bool Accionista { get; set; } // Accionista (bit, NOT NULL) public string? Obs { get; set; } // Obs (varchar(150), NULL) public int Empresa { get; set; } // Empresa (int, NOT NULL, DEFAULT 0) public bool Baja { get; set; } // Baja (bit, NOT NULL, DEFAULT 0) public DateTime? FechaBaja { get; set; } // FechaBaja (datetime2(0), NULL) } }