All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 8m32s
21 lines
815 B
C#
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; }
|
|
}
|
|
} |