LevelOS-Core/MLL/ModeloCoordImpres.cs

47 lines
1.4 KiB
C#

using System;
namespace MLL
{
public class ModeloCoordImpres
{
public ModeloCoordImpres()
{
ID_COORD_IMPRES = 0;
CODIGO = string.Empty;
COD_MODELO = string.Empty;
NOME_CAMPO = string.Empty;
COD_CAMPO = string.Empty;
TIPO = string.Empty;
CX = string.Empty;
CY = string.Empty;
COMP = string.Empty;
ATIVO = string.Empty;
}
public ModeloCoordImpres(int iD_COORD_IMPRES, string cODIGO, string cOD_MODELO,
string nOME_CAMPO, string cOD_CAMPO, string tIPO, string cX, string cY, string cOMP,
string aTIVO)
{
ID_COORD_IMPRES = iD_COORD_IMPRES;
CODIGO = cODIGO;
COD_MODELO = cOD_MODELO;
NOME_CAMPO = nOME_CAMPO;
COD_CAMPO = cOD_CAMPO;
TIPO = tIPO;
CX = cX;
CY = cY;
COMP = cOMP;
ATIVO = aTIVO;
}
public int ID_COORD_IMPRES { get; set; }
public string CODIGO { get; set; }
public string COD_MODELO { get; set; }
public string NOME_CAMPO { get; set; }
public string COD_CAMPO { get; set; }
public string TIPO { get; set; }
public string CX { get; set; }
public string CY { get; set; }
public string COMP { get; set; }
public string ATIVO { get; set; }
}
}