This commit is contained in:
2025-12-29 16:09:21 +01:00
parent 96b28bb7a9
commit 3a1a4055ce
7 changed files with 78 additions and 88 deletions

View File

@ -1,3 +1,4 @@
using System.ComponentModel.DataAnnotations.Schema;
using StandManager.Domain.Entita.Base;
namespace StandManager.Domain.Entita;
@ -14,4 +15,10 @@ public class Evento : EntitaBase
public DateTime IscrizioneDa { get; set; }
public DateTime IscrizioneA { get; set; }
[InverseProperty(nameof(InvitoEvento.Evento))]
public List<InvitoEvento> InvitoEventoList { get; set; }
[InverseProperty(nameof(IscrizioneEvento.Evento))]
public List<IscrizioneEvento> IscrizioneEventoList { get; set; }
}