FcfactuvenDTO.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 RegistroFcfactuvenDTO
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 string Borrador { get; set; } = string.Empty;
40 
44  public int Sistema { get; set; } = 0;
45 
49  public int Territorio { get; set; } = 0;
50 
54  public int Tipo_cert { get; set; } = 0;
55 
59  public string Tbai { get; set; } = string.Empty;
60 
64  public string QR_Tbai { get; set; } = string.Empty;
65 
69  public string Firma { get; set; } = string.Empty;
70 
74  public string Huella { get; set; } = string.Empty;
75 
79  public int Estado { get; set; } = 0;
80 
84  public string Huella_ant { get; set; } = string.Empty;
85 
89  public DateTime? Hora { get; set; } = null;
90 
94  public string N_serie { get; set; } = string.Empty;
95 
99  public int Modtipenv { get; set; } = 0;
100 
104  public int Modestado { get; set; } = 0;
105 
109  public string Modautoriz { get; set; } = string.Empty;
110 
114  public string Modperiod { get; set; } = string.Empty;
115 
119  public string Modiae { get; set; } = string.Empty;
120 
124  public int Anulado { get; set; } = 0;
125 
129  public int Tipoenvio { get; set; } = 0;
130 
134  public decimal Totaldoc { get; set; } = 0M;
135 
139  public bool Ter_no_env { get; set; } = false;
140 
144  public string Cliente { get; set; } = string.Empty;
145 
149  public DateTime? Fecha_fac { get; set; } = null;
150 
154  public decimal Base { get; set; } = 0M;
155 
159  public string Husohora { get; set; } = string.Empty;
160 
164  public string QR_verifac { get; set; } = string.Empty;
165 
169  public string Terminal { get; set; } = string.Empty;
170 
171  #endregion Propiedades
172 
173  #region Constructores
174 
179 
180  #endregion Constructores
181  }
182 }