| | | 1 | | namespace FAU.Logica.DTOs; |
| | | 2 | | |
| | | 3 | | public class TablaPermanenciaDto |
| | | 4 | | { |
| | 0 | 5 | | public long Id { get; set; } |
| | 0 | 6 | | public long EscalafonId { get; set; } |
| | 0 | 7 | | public string EscalafonCodigo { get; set; } = string.Empty; |
| | 0 | 8 | | public string EscalafonDenominacion { get; set; } = string.Empty; |
| | 0 | 9 | | public long GradoId { get; set; } |
| | 0 | 10 | | public string GradoCodigo { get; set; } = string.Empty; |
| | 0 | 11 | | public string GradoDenominacion { get; set; } = string.Empty; |
| | 0 | 12 | | public short MesesDesde { get; set; } |
| | 0 | 13 | | public short MesesHasta { get; set; } |
| | 0 | 14 | | public decimal? MontoFijo { get; set; } |
| | 0 | 15 | | public decimal? Porcentaje { get; set; } |
| | 0 | 16 | | public bool AplicaRiesgoVuelo { get; set; } |
| | 0 | 17 | | public DateTime VigenteDesde { get; set; } |
| | 0 | 18 | | public DateTime? VigenteHasta { get; set; } |
| | 0 | 19 | | public bool Activo { get; set; } |
| | | 20 | | } |