using System; namespace GestionIntegral.Api.Models.Distribucion { public class PorcMonCanillaHistorico // Corresponde a dist_PorcMonPagoCanilla_H { public int Id_PorcMon { get; set; } // ID del PorcMon original public int Id_Publicacion { get; set; } public int Id_Canilla { get; set; } 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 DateTime FechaMod { get; set; } public string TipoMod { get; set; } = string.Empty; } }