using System; namespace GestionIntegral.Api.Models.Distribucion { public class PorcMonCanilla // Corresponde a dist_PorcMonPagoCanilla { public int IdPorcMon { get; set; } // Id_PorcMon public int IdPublicacion { get; set; } public int IdCanilla { get; set; } public DateTime VigenciaD { get; set; } public DateTime? VigenciaH { get; set; } public decimal PorcMon { get; set; } // Columna PorcMon en DB public bool EsPorcentaje { get; set; } } }