| | | 1 | | namespace FAU.Logica.DTOs; |
| | | 2 | | |
| | | 3 | | public class BeneficioSocialDto |
| | | 4 | | { |
| | 11 | 5 | | public long Id { get; set; } |
| | 6 | 6 | | public long PersonaId { get; set; } |
| | 11 | 7 | | public string PersonaCedula { get; set; } = string.Empty; |
| | 11 | 8 | | public string PersonaNombre { get; set; } = string.Empty; |
| | 6 | 9 | | public long TipoBeneficioId { get; set; } |
| | 12 | 10 | | public string TipoBeneficioCodigo { get; set; } = string.Empty; |
| | 11 | 11 | | public string TipoBeneficioNombre { get; set; } = string.Empty; |
| | 5 | 12 | | public short Cantidad { get; set; } |
| | 4 | 13 | | public DateTime VigenteDesde { get; set; } |
| | 4 | 14 | | public DateTime? VigenteHasta { get; set; } |
| | 13 | 15 | | public string Estado { get; set; } = string.Empty; |
| | 4 | 16 | | public string? DocumentoRespaldo { get; set; } |
| | 4 | 17 | | public string? Observaciones { get; set; } |
| | 4 | 18 | | public DateTime? FechaEvento { get; set; } |
| | 4 | 19 | | public string? ClaveEvento { get; set; } |
| | 4 | 20 | | public bool RetroactividadPendiente { get; set; } |
| | | 21 | | } |