25 lines
913 B
C#
25 lines
913 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class PrecioHistorialDto
|
||
|
|
{
|
||
|
|
public int Id_Precio { get; set; }
|
||
|
|
public int Id_Publicacion { get; set; }
|
||
|
|
// public string NombrePublicacion { get; set; } // Opcional
|
||
|
|
public DateTime VigenciaD { get; set; }
|
||
|
|
public DateTime? VigenciaH { get; set; }
|
||
|
|
public decimal? Lunes { get; set; }
|
||
|
|
public decimal? Martes { get; set; }
|
||
|
|
public decimal? Miercoles { get; set; }
|
||
|
|
public decimal? Jueves { get; set; }
|
||
|
|
public decimal? Viernes { get; set; }
|
||
|
|
public decimal? Sabado { get; set; }
|
||
|
|
public decimal? Domingo { 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;
|
||
|
|
}
|
||
|
|
}
|