ModocertDTO.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 
7 namespace sage.addons.factucert.DataAccess.Dto
8 {
12  public class RegistroModocertDTO
13  {
14  #region Propiedades
15 
19  public string Usuario { get; set; } = string.Empty;
20 
24  public string Empresa { get; set; } = string.Empty;
25 
29  public string Ejercicio { get; set; } = string.Empty;
30 
34  public string Numero { get; set; } = string.Empty;
35 
39  public bool Modanula { get; set; } = false;
40 
44  public int Modificado { get; set; } = 0;
45 
49  public DateTime Fecha { get; set; } = DateTime.Now;
50 
54  public string Cliente { get; set; } = string.Empty;
55 
59  public string Nombre_cli { get; set; } = string.Empty;
60 
64  public string Divisa { get; set; } = string.Empty;
65 
69  public decimal Totaldoc { get; set; } = 0M;
70 
74  public decimal Totaldiv { get; set; } = 0M;
75 
79  public string Detalle { get; set; } = string.Empty;
80 
84  public string Portes { get; set; } = string.Empty;
85 
89  public int Sistema { get; set; } = 0;
90 
94  public int Territorio { get; set; } = 0;
95 
99  public int Tipo_cert { get; set; } = 0;
100 
104  public string Firma { get; set; } = string.Empty;
105 
109  public string Huella { get; set; } = string.Empty;
110 
114  public int Estado { get; set; } = 0;
115 
119  public string Huella_ant { get; set; } = string.Empty;
120 
124  public DateTime? Hora { get; set; } = null;
125 
129  public string HusoHora { get; set; } = string.Empty;
130 
134  public string Idfcfactu { get; set; } = string.Empty;
135 
139  public string Siiframod { get; set; } = string.Empty;
140 
144  public string Siinumder { get; set; } = string.Empty;
145 
149  public int Operacion { get; set; } = 0;
150 
154  public string Datosadici { get; set; } = string.Empty;
155 
159  public string QR_verifac { get; set; } = string.Empty;
160 
164  public string Terminal { get; set; } = string.Empty;
165 
169  public int Tipoenvio { get; set; } = 0;
170 
174  public string Datosmod { get; set; } = string.Empty;
175 
176  #endregion Propiedades
177 
178  #region Constructores
179 
183  public RegistroModocertDTO() { }
184 
185  #endregion Constructores
186  }
187 }