LevelOS/MLL/ModeloPermissao.cs

23 lines
505 B
C#

namespace MLL
{
public class ModeloPermissao
{
public ModeloPermissao()
{
Id = 0;
Nome = string.Empty;
Descricao = string.Empty;
}
public ModeloPermissao(int id, string nome, string descricao)
{
Id = id;
Nome = nome;
Descricao = descricao;
}
public int Id { get; set; }
public string Nome { get; set; }
public string Descricao { get; set; }
}
}