Files
StandManager/StandManager.Domain/Entita/Permission.cs
2025-12-17 08:55:21 +01:00

14 lines
394 B
C#

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; }
}