22 lines
629 B
C#
22 lines
629 B
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNFENumeroLote
|
|
{
|
|
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; }
|
|
}
|
|
} |