Permessi_Parziale
This commit is contained in:
14
StandManager.Domain/Entita/Permission.cs
Normal file
14
StandManager.Domain/Entita/Permission.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using StandManager.Domain.Entita.Base;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace StandManager.Domain.Entita;
|
||||
|
||||
public class Permission : EntitaBase
|
||||
{
|
||||
[ForeignKey(nameof(Ruolo))]
|
||||
public Guid? RuoloId { get; set; }
|
||||
public Ruolo Ruolo { get; set; }
|
||||
[ForeignKey(nameof(Feature))]
|
||||
public Guid IdFeature { get; set; }
|
||||
public Feature Feature { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user