28 lines
860 B
C#
28 lines
860 B
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasCCE
|
|
{
|
|
public ModeloNotasCCE(int iD_NOTAS_CCE, string cODIGO, string cOD_NFE, string cORRECAO, string dATA_HORA, string tZD, string eVENTO, string rETORNO)
|
|
{
|
|
ID_NOTAS_CCE = iD_NOTAS_CCE;
|
|
CODIGO = cODIGO;
|
|
COD_NFE = cOD_NFE;
|
|
CORRECAO = cORRECAO;
|
|
DATA_HORA = dATA_HORA;
|
|
TZD = tZD;
|
|
EVENTO = eVENTO;
|
|
RETORNO = rETORNO;
|
|
}
|
|
|
|
public int ID_NOTAS_CCE { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string COD_NFE { get; set; }
|
|
public string CORRECAO { get; set; }
|
|
public string DATA_HORA { get; set; }
|
|
public string TZD { get; set; }
|
|
public string EVENTO { get; set; }
|
|
public string RETORNO { get; set; }
|
|
}
|
|
} |