21 lines
748 B
C#
21 lines
748 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class ControlDevolucionesHistorialDto
|
||
|
|
{
|
||
|
|
public int Id_Control { get; set; }
|
||
|
|
public int Id_Empresa { get; set; }
|
||
|
|
// public string NombreEmpresa { get; set; } // Opcional
|
||
|
|
public DateTime Fecha { get; set; } // Fecha original del control
|
||
|
|
public int Entrada { get; set; }
|
||
|
|
public int Sobrantes { get; set; }
|
||
|
|
public string? Detalle { get; set; }
|
||
|
|
public int SinCargo { 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;
|
||
|
|
}
|
||
|
|
}
|