2025-06-09 19:37:07 -03:00
|
|
|
using System;
|
|
|
|
|
|
2025-06-12 19:36:21 -03:00
|
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
2025-06-09 19:37:07 -03:00
|
|
|
{
|
|
|
|
|
public class CanillaHistorialDto
|
|
|
|
|
{
|
|
|
|
|
public int Id_Canilla { get; set; }
|
|
|
|
|
public int? Legajo { get; set; }
|
|
|
|
|
public string NomApe { get; set; } = string.Empty;
|
|
|
|
|
public string? Parada { get; set; }
|
|
|
|
|
public int Id_Zona { get; set; }
|
|
|
|
|
// public string NombreZona { get; set; } // Opcional, si lo quieres traer con JOIN
|
|
|
|
|
public bool Accionista { get; set; }
|
|
|
|
|
public string? Obs { get; set; }
|
|
|
|
|
public int Empresa { get; set; } // Id de la empresa
|
|
|
|
|
// public string NombreEmpresa { get; set; } // Opcional
|
|
|
|
|
public bool Baja { get; set; }
|
|
|
|
|
public DateTime? FechaBaja { 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;
|
|
|
|
|
}
|
|
|
|
|
}
|