Files
hermes/WebApp/Entities/Event.cs
AleksDw b4b81355c1 CreateDatabase
Nic nie działa bo wszystko jest inne XDD
2025-04-27 00:40:34 +02:00

17 lines
628 B
C#

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 required string Location { get; set; }
public required DateTime EventDate { get; set; }
public Organisation? Organisation { get; set; }
public ICollection<EventSkill> EventSkills { get; set; } = new List<EventSkill>();
public ICollection<EventRegistration> EventRegistrations { get; set; } = new List<EventRegistration>();
}
}