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 Features { get; set; } }