21 lines
767 B
C#
21 lines
767 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class PorcPagoHistorialDto
|
||
|
|
{
|
||
|
|
public int Id_Porcentaje { get; set; }
|
||
|
|
public int Id_Publicacion { get; set; }
|
||
|
|
// public string NombrePublicacion { get; set; } // Opcional
|
||
|
|
public int Id_Distribuidor { get; set; }
|
||
|
|
// public string NombreDistribuidor { get; set; } // Opcional
|
||
|
|
public DateTime VigenciaD { get; set; }
|
||
|
|
public DateTime? VigenciaH { get; set; }
|
||
|
|
public decimal Porcentaje { 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;
|
||
|
|
}
|
||
|
|
}
|