| | | 1 | | namespace FAU.Logica.DTOs; |
| | | 2 | | |
| | | 3 | | public class DependienteDto |
| | | 4 | | { |
| | 7 | 5 | | public long Id { get; set; } |
| | 6 | 6 | | public long PersonaId { get; set; } |
| | 13 | 7 | | public string CedulaTitular { get; set; } = string.Empty; |
| | 12 | 8 | | public string NombreTitular { get; set; } = string.Empty; |
| | 14 | 9 | | public string Tipo { get; set; } = string.Empty; |
| | 14 | 10 | | public string Nombre { get; set; } = string.Empty; |
| | 5 | 11 | | public string? Cedula { get; set; } |
| | 5 | 12 | | public DateTime? FechaNacimiento { get; set; } |
| | 5 | 13 | | public bool Discapacitado { get; set; } |
| | 5 | 14 | | public short? PorcentajeDeduccion { get; set; } |
| | 5 | 15 | | public DateTime VigenteDesde { get; set; } |
| | 5 | 16 | | public DateTime? VigenteHasta { get; set; } |
| | 6 | 17 | | public bool Activo { get; set; } |
| | 8 | 18 | | public bool AplicaDeduccion { get; set; } |
| | 5 | 19 | | public string? TipoDeduccionIrpf { get; set; } |
| | | 20 | | } |