mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 13:40:13 +01:00
CreateDatabase
Nic nie działa bo wszystko jest inne XDD
This commit is contained in:
@@ -2,11 +2,15 @@
|
||||
{
|
||||
public class Event
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public required string Name { get; set; }
|
||||
public required string Place { get; set; }
|
||||
public int EventId { get; set; }
|
||||
public int OrganisationId { get; set; }
|
||||
public required string Title { get; set; }
|
||||
public string? Description { get; set; }
|
||||
public required DateTime Date { 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>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user