19 lines
446 B
C#
19 lines
446 B
C#
public class ModeloPerfil
|
|
{
|
|
public ModeloPerfil(int id, int empresaId, string nome, string descricao, bool ativo)
|
|
{
|
|
Id = id;
|
|
EmpresaId = empresaId;
|
|
Nome = nome;
|
|
Descricao = descricao;
|
|
Ativo = ativo;
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public int EmpresaId { get; set; }
|
|
|
|
public string Nome { get; set; }
|
|
public string Descricao { get; set; }
|
|
|
|
public bool Ativo { get; set; }
|
|
} |