25 lines
937 B
C#
25 lines
937 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria // O Auditoria
|
||
|
|
{
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|