Allineamento da prod
This commit is contained in:
@ -3,20 +3,6 @@ using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace StandManager.Domain.Entita;
|
||||
|
||||
public class InvitoEvento : EntitaBase
|
||||
{
|
||||
[ForeignKey(nameof(Evento))]
|
||||
public Guid? EventoId { get; set; }
|
||||
public Evento Evento{ get; set; }
|
||||
|
||||
[ForeignKey(nameof(Cliente))]
|
||||
public Guid? ClienteId { get; set; }
|
||||
public Cliente Cliente { get; set; }
|
||||
|
||||
[InverseProperty(nameof(IscrizioneEvento.InvitoEvento))]
|
||||
public List<IscrizioneEvento> IscrizioniEvento { get; set; }
|
||||
}
|
||||
|
||||
public class IscrizioneEvento : EntitaBase
|
||||
{
|
||||
[ForeignKey(nameof(Evento))]
|
||||
|
||||
Reference in New Issue
Block a user