21 lines
725 B
C#
21 lines
725 B
C#
|
|
namespace GestionIntegral.Api.Models.Distribucion
|
||
|
|
{
|
||
|
|
public class CanillaHistorico
|
||
|
|
{
|
||
|
|
public int IdCanilla { get; set; }
|
||
|
|
public int? Legajo { get; set; }
|
||
|
|
public string NomApe { get; set; } = string.Empty;
|
||
|
|
public string? Parada { get; set; }
|
||
|
|
public int IdZona { get; set; }
|
||
|
|
public bool Accionista { get; set; }
|
||
|
|
public string? Obs { get; set; }
|
||
|
|
public int Empresa { get; set; }
|
||
|
|
public bool Baja { get; set; }
|
||
|
|
public DateTime? FechaBaja { get; set; }
|
||
|
|
|
||
|
|
// Campos de Auditoría
|
||
|
|
public int Id_Usuario { get; set; }
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|