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; } public DateTime IscrizioneDa { get; set; } public DateTime IscrizioneA { get; set; } }