changed name from Apollinare to Zentral

This commit is contained in:
2025-12-03 00:07:55 +01:00
parent 490cd2730d
commit 66077d6077
157 changed files with 1895 additions and 1887 deletions

View File

@@ -0,0 +1,15 @@
namespace Zentral.Domain.Entities;
public class Risorsa : BaseEntity
{
public string Nome { get; set; } = string.Empty;
public string? Cognome { get; set; }
public string? Telefono { get; set; }
public string? Email { get; set; }
public int? TipoRisorsaId { get; set; }
public string? Note { get; set; }
public bool Attivo { get; set; } = true;
public TipoRisorsa? TipoRisorsa { get; set; }
public ICollection<EventoDettaglioRisorsa> DettagliRisorse { get; set; } = new List<EventoDettaglioRisorsa>();
}