namespace WebApp.Entities { public class Event { public int EventId { get; set; } public int OrganisationId { get; set; } public required string Title { get; set; } public string? Description { get; set; } public string? ImageURL { get; set; } public required string Location { get; set; } public required DateTime EventDate { get; set; } public Organisation? Organisation { get; set; } public ICollection EventSkills { get; set; } = new List(); public ICollection EventRegistrations { get; set; } = new List(); } }