32 lines
771 B
C#
32 lines
771 B
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloIcmsUf
|
|
{
|
|
public ModeloIcmsUf()
|
|
{
|
|
ID_ICMS_UF = 0;
|
|
CODIGO = string.Empty;
|
|
COD_ITEM = string.Empty;
|
|
UF = string.Empty;
|
|
ICMS = string.Empty;
|
|
}
|
|
public ModeloIcmsUf(int iD_ICMS_UF, string cODIGO, string cOD_ITEM, string uF, string iCMS)
|
|
{
|
|
ID_ICMS_UF = iD_ICMS_UF;
|
|
CODIGO = cODIGO;
|
|
COD_ITEM = cOD_ITEM;
|
|
UF = uF;
|
|
ICMS = iCMS;
|
|
}
|
|
|
|
public int ID_ICMS_UF { get; set; }
|
|
|
|
public string CODIGO { get; set; }
|
|
public string COD_ITEM { get; set; }
|
|
|
|
public string UF { get; set; }
|
|
public string ICMS { get; set; }
|
|
}
|
|
} |