LevelOS-Core/MLL/ModeloEsquemas.cs

41 lines
1.1 KiB
C#

using System;
using System.Text.RegularExpressions;
namespace MLL
{
public class ModeloEsquemas
{
public ModeloEsquemas()
{
ID_ESQUEMAS = 0;
CODIGO = string.Empty;
MARCA = string.Empty;
NOME = string.Empty;
LOCAL = string.Empty;
FPATH = string.Empty;
OBS = string.Empty;
}
public ModeloEsquemas(int iD_ESQUEMAS, string cODIGO, string mARCA, string nOME,
string lOCAL, string fPATH, string oBS)
{
ID_ESQUEMAS = iD_ESQUEMAS;
CODIGO = cODIGO;
MARCA = mARCA;
NOME = nOME;
LOCAL = lOCAL;
FPATH = fPATH;
OBS = oBS;
}
public int ID_ESQUEMAS { get; set; }
public string CODIGO { get; set; }
public string MARCA { get; set; }
public string NOME { get; set; }
public string LOCAL { get; set; }
public string FPATH { get; set; }
public string OBS { get; set; }
}
}