| | | 1 | | namespace FAU.Logica.DTOs; |
| | | 2 | | |
| | | 3 | | public class CatalogoItemDto |
| | | 4 | | { |
| | 21 | 5 | | public long Id { get; set; } |
| | 21 | 6 | | public int Codigo { get; set; } |
| | 35 | 7 | | public string Nombre { get; set; } = string.Empty; |
| | 35 | 8 | | public string Tipo { get; set; } = string.Empty; |
| | 21 | 9 | | public string? ClasificacionSiif { get; set; } |
| | 21 | 10 | | public string? NormaLegal { get; set; } |
| | 21 | 11 | | public bool EsGravado { get; set; } |
| | 21 | 12 | | public bool AcumulaAguinaldo { get; set; } |
| | 21 | 13 | | public bool LlevaAumento { get; set; } |
| | 21 | 14 | | public string? FormulaCalculo { get; set; } |
| | 21 | 15 | | public short OrdenCalculo { get; set; } |
| | 21 | 16 | | public bool ContribuyeWPara53 { get; set; } |
| | 21 | 17 | | public bool ContribuyeWPara10 { get; set; } |
| | 21 | 18 | | public bool ContribuyeWPara20 { get; set; } |
| | 21 | 19 | | public bool ContribuyeWNominal { get; set; } |
| | 21 | 20 | | public bool EsFicto { get; set; } |
| | 21 | 21 | | public bool Vigente { get; set; } |
| | | 22 | | } |