All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 8m32s
25 lines
963 B
C#
25 lines
963 B
C#
using System;
|
|
|
|
namespace GestionIntegral.Api.Models.Distribucion
|
|
{
|
|
public class DistribuidorHistorico // Corresponde a dist_dtDistribuidores_H
|
|
{
|
|
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? 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; }
|
|
public int Id_Usuario { get; set; }
|
|
public DateTime FechaMod { get; set; }
|
|
public string TipoMod { get; set; } = string.Empty;
|
|
}
|
|
} |