22 lines
804 B
C#
22 lines
804 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class PorcMonCanillaHistorialDto
|
||
|
|
{
|
||
|
|
public int Id_PorcMon { get; set; }
|
||
|
|
public int Id_Publicacion { get; set; }
|
||
|
|
// public string NombrePublicacion { get; set; } // Opcional
|
||
|
|
public int Id_Canilla { get; set; }
|
||
|
|
// public string NombreCanilla { get; set; } // Opcional
|
||
|
|
public DateTime VigenciaD { get; set; }
|
||
|
|
public DateTime? VigenciaH { get; set; }
|
||
|
|
public decimal PorcMon { get; set; }
|
||
|
|
public bool EsPorcentaje { 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;
|
||
|
|
}
|
||
|
|
}
|