mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 13:40:13 +01:00
Add Event tables
This commit is contained in:
12
WebApp/Entities/Event.cs
Normal file
12
WebApp/Entities/Event.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace WebApp.Entities
|
||||
{
|
||||
public class Event
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public required string Name { get; set; }
|
||||
public required string Place { get; set; }
|
||||
public string? Description { get; set; }
|
||||
public required DateTime Date { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user