Servizi e cose

This commit is contained in:
2025-12-01 15:49:52 +01:00
parent 319e348911
commit 7eaa96281c
26 changed files with 1560 additions and 11 deletions

View File

@ -0,0 +1,14 @@
using StandManager.Domain.Entita.Base;
namespace StandManager.Domain.Entita;
public class Evento : EntitaBase
{
public string Titolo { get; set; }
public string Descrizione { get; set; }
public string Luogo { get; set; }
public string TemplateHtmlMailInvito { get; set; }
public string TemplateHtmlMailIscrizione { get; set; }
public DateTime DataDa { get; set; }
public DateTime DataA { get; set; }
}