Permessi_Parziale
This commit is contained in:
12
StandManager.Domain/Entita/Sezione.cs
Normal file
12
StandManager.Domain/Entita/Sezione.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using StandManager.Domain.Entita.Base;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace StandManager.Domain.Entita;
|
||||
|
||||
public class Sezione : EntitaBase
|
||||
{
|
||||
public string Nome { get; set; }
|
||||
public int Ordinamento { get; set; }
|
||||
[InverseProperty(nameof(Feature.Sezione))]
|
||||
public List<Feature> Features { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user