34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloCoordImpres
|
|
{
|
|
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; }
|
|
}
|
|
} |