Permessi_Parziale
This commit is contained in:
21
StandManager.Domain/Entita/Feature.cs
Normal file
21
StandManager.Domain/Entita/Feature.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using StandManager.Domain.Entita.Base;
|
||||
|
||||
namespace StandManager.Domain.Entita;
|
||||
|
||||
public class Feature : EntitaBase
|
||||
{
|
||||
public string Nome { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public int Ordinamento { get; set; }
|
||||
public Sezione Sezione { get; set; }
|
||||
public FeatureType Type { get; set; }
|
||||
}
|
||||
|
||||
public enum FeatureType
|
||||
{
|
||||
Any = -99,
|
||||
Insert = 0,
|
||||
Edit,
|
||||
Delete,
|
||||
AdminGlobal = 100
|
||||
}
|
||||
Reference in New Issue
Block a user