12 lines
341 B
C#
12 lines
341 B
C#
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; }
|
|
} |