Event: Add description, date and location.

Changed Files: Model >Event.cs & Client > Module > Edit.razor & Detail.razor
This commit is contained in:
Konstantin Hintermayer
2025-05-30 23:39:32 +02:00
parent 527f9aadc6
commit f280e49d96
4 changed files with 53 additions and 41 deletions

View File

@ -13,6 +13,10 @@ namespace SZUAbsolventenverein.Module.EventRegistration.Models
public int ModuleId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public DateTime EventDate { get; set; }
public string Location { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }