Permessi_Parziale
This commit is contained in:
19
StandManager.Domain/Entita/Ruolo.cs
Normal file
19
StandManager.Domain/Entita/Ruolo.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using StandManager.Domain.Entita.Base;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace StandManager.Domain.Entita;
|
||||
|
||||
public class Ruolo : EntitaBase
|
||||
{
|
||||
public Ruolo()
|
||||
{
|
||||
Nome = string.Empty;
|
||||
}
|
||||
public string Nome { get; set; }
|
||||
|
||||
[InverseProperty(nameof(Utente.Ruolo))]
|
||||
public List<Utente> Utenti { get; set; }
|
||||
|
||||
[InverseProperty(nameof(Permission.Ruolo))]
|
||||
public virtual List<Permission> Permessi { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user