Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Auditoria/DistribuidorHistorialDto.cs

26 lines
968 B
C#
Raw Normal View History

using System;
namespace GestionIntegral.Api.Dtos.Auditoria
{
public class DistribuidorHistorialDto
{
public int Id_Distribuidor { get; set; }
public string Nombre { get; set; } = string.Empty;
public string? Contacto { get; set; }
public string NroDoc { get; set; } = string.Empty;
public int? Id_Zona { get; set; }
// public string NombreZona { get; set; } // Opcional
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 int Id_Usuario { get; set; }
public string NombreUsuarioModifico { get; set; } = string.Empty;
public DateTime FechaMod { get; set; }
public string TipoMod { get; set; } = string.Empty;
}
}