14 lines
295 B
C#
14 lines
295 B
C#
public class ModeloPermissao
|
|
{
|
|
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; }
|
|
} |