Files
2025-12-17 14:42:45 +01:00

23 lines
445 B
C#

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,
Capoarea = 50,
AdminGlobal = 100
}