changed name from Apollinare to Zentral
This commit is contained in:
15
src/backend/Zentral.Domain/Entities/Risorsa.cs
Normal file
15
src/backend/Zentral.Domain/Entities/Risorsa.cs
Normal 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>();
|
||||
}
|
||||
Reference in New Issue
Block a user