| | | 1 | | namespace FAU.Logica.DTOs; |
| | | 2 | | |
| | | 3 | | public class ParametroLiquidacionDto |
| | | 4 | | { |
| | 6 | 5 | | public long Id { get; set; } |
| | 4 | 6 | | public short Anio { get; set; } |
| | 4 | 7 | | public short Mes { get; set; } |
| | 10 | 8 | | public decimal BpcAnual { get; set; } |
| | 4 | 9 | | public decimal TasaMontepioLeyVieja { get; set; } |
| | 4 | 10 | | public decimal TasaMontepioLeyNueva { get; set; } |
| | 4 | 11 | | public decimal TasaFonasa { get; set; } |
| | 4 | 12 | | public decimal TasaFrl { get; set; } |
| | 4 | 13 | | public short UmbralDeduccionBpc { get; set; } |
| | 4 | 14 | | public decimal TasaDeduccionAlta { get; set; } |
| | 4 | 15 | | public decimal TasaDeduccionBaja { get; set; } |
| | 4 | 16 | | public decimal PorcentajeMinimoDeficit { get; set; } |
| | 4 | 17 | | public DateTime CreadoEn { get; set; } |
| | 4 | 18 | | public long? CreadoPor { get; set; } |
| | 4 | 19 | | public string? UsuarioCreador { get; set; } |
| | | 20 | | } |