feat: image url migration

registrations can now store image urls, which will be shown at view.html
This commit is contained in:
2025-06-02 03:01:10 +02:00
parent 4a82822d64
commit f7583738d7
12 changed files with 675 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
namespace WebApp.Entities
namespace WebApp.Entities
{
public class Event
{
@@ -6,6 +6,7 @@
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; }