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 DettagliRisorse { get; set; } = new List(); }