23 lines
855 B
C#
23 lines
855 B
C#
|
|
namespace GestionIntegral.Api.Models.Distribucion
|
||
|
|
{
|
||
|
|
public class DistribuidorHistorico
|
||
|
|
{
|
||
|
|
public int IdDistribuidor { get; set; } // FK
|
||
|
|
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? 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; }
|
||
|
|
|
||
|
|
// Campos de Auditoría
|
||
|
|
public int Id_Usuario { get; set; }
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|