Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Distribucion/DistribuidorDto.cs
dmolinari 5212e31a03
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 8m32s
Feat: Baja Lógica de Distribuidores (Selectores Dropdown)
2026-03-23 14:09:26 -03:00

21 lines
815 B
C#

namespace GestionIntegral.Api.Dtos.Distribucion
{
public class DistribuidorDto
{
public int IdDistribuidor { get; set; }
public string Nombre { get; set; } = string.Empty;
public string? Contacto { get; set; }
public string NroDoc { get; set; } = string.Empty;
public int? IdZona { get; set; }
public string? NombreZona { get; set; } // Para mostrar en UI
public string? Calle { get; set; }
public string? Numero { get; set; }
public string? Piso { get; set; }
public string? Depto { get; set; }
public string? Telefono { get; set; }
public string? Email { get; set; }
public string? Localidad { get; set; }
public bool Baja { get; set; }
public DateTime? FechaBaja { get; set; }
}
}