LevelOS-Core/MLL/ModeloOrcaPadrao.cs

25 lines
667 B
C#

using System;
namespace MLL
{
public class ModeloOrcaPadrao
{
public ModeloOrcaPadrao(int iD_ORCA_PADRAO, string cODIGO, string nOME, string oBS, string sHOW_OBS, string uSADO)
{
ID_ORCA_PADRAO = iD_ORCA_PADRAO;
CODIGO = cODIGO;
NOME = nOME;
OBS = oBS;
SHOW_OBS = sHOW_OBS;
USADO = uSADO;
}
public int ID_ORCA_PADRAO { get; set; }
public string CODIGO { get; set; }
public string NOME { get; set; }
public string OBS { get; set; }
public string SHOW_OBS { get; set; }
public string USADO { get; set; }
}
}