| | | 1 | | namespace FAU.Logica.DTOs; |
| | | 2 | | |
| | | 3 | | public class NovedadPeriodoDto |
| | | 4 | | { |
| | 0 | 5 | | public long Id { get; set; } |
| | 0 | 6 | | public long PeriodoId { get; set; } |
| | 0 | 7 | | public long PersonaId { get; set; } |
| | 0 | 8 | | public string Cedula { get; set; } = string.Empty; |
| | 0 | 9 | | public string NombreCompleto { get; set; } = string.Empty; |
| | 0 | 10 | | public string Tipo { get; set; } = string.Empty; |
| | 0 | 11 | | public short DiasAfectados { get; set; } |
| | 0 | 12 | | public decimal? PorcentajeSubsidio { get; set; } |
| | 0 | 13 | | public DateTime FechaDesde { get; set; } |
| | 0 | 14 | | public DateTime? FechaHasta { get; set; } |
| | 0 | 15 | | public string? Observaciones { get; set; } |
| | 0 | 16 | | public string Estado { get; set; } = string.Empty; |
| | 0 | 17 | | public long? CreadoPor { get; set; } |
| | 0 | 18 | | public DateTime CreadoEn { get; set; } |
| | 0 | 19 | | public long? ConfirmadoPor { get; set; } |
| | 0 | 20 | | public DateTime? ConfirmadoEn { get; set; } |
| | | 21 | | } |