Add Event tables

This commit is contained in:
AleksDw
2025-04-24 22:06:15 +02:00
parent ba5725d780
commit 981236f6aa
6 changed files with 401 additions and 0 deletions

12
WebApp/Entities/Event.cs Normal file
View 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; }
}
}