LevelOS/MLL/ModeloNFENumeroLote.cs

30 lines
865 B
C#

using System;
namespace MLL
{
public class ModeloNFENumeroLote
{
public ModeloNFENumeroLote()
{
ID_NFE_NUM_LOTE = 0;
CODIGO = string.Empty;
NUM_NF = string.Empty;
DATA_GERADO = string.Empty;
RETORNO = string.Empty;
}
public ModeloNFENumeroLote(int iD_NFE_NUM_LOTE, string cODIGO, string nUM_NF, string dATA_GERADO, string rETORNO)
{
ID_NFE_NUM_LOTE = iD_NFE_NUM_LOTE;
CODIGO = cODIGO;
NUM_NF = nUM_NF;
DATA_GERADO = dATA_GERADO;
RETORNO = rETORNO;
}
public int ID_NFE_NUM_LOTE { get; set; }
public string CODIGO { get; set; }
public string NUM_NF { get; set; }
public string DATA_GERADO { get; set; }
public string RETORNO { get; set; }
}
}