namespace GestionIntegral.Api.Dtos.Distribucion { public class PorcPagoDto // Para Porcentaje de Pago de Distribuidores { public int IdPorcentaje { get; set; } public int IdPublicacion { get; set; } // public string NombrePublicacion { get; set; } = string.Empty; // Opcional, si se necesita en una vista general de porcentajes public int IdDistribuidor { get; set; } public string NombreDistribuidor { get; set; } = string.Empty; // Para mostrar en UI public string VigenciaD { get; set; } = string.Empty; // yyyy-MM-dd public string? VigenciaH { get; set; } // yyyy-MM-dd public decimal Porcentaje { get; set; } } }