Widget
This commit is contained in:
@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user