fronted: login

This commit is contained in:
2025-08-15 20:03:07 +02:00
parent f61b48fa4b
commit 1b2d95344a
184 changed files with 5238 additions and 232 deletions

View File

@@ -14,12 +14,15 @@ public class EventModel
public string? Description { get; set; }
public DateTime? Date { get; set; }
public string? Location { get; set; }
[ForeignKey("TagId")]
public List<TagModel> RelatedTags { get; set; } = [];
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public string? CreatedBy { get; set; }
public string? UpdatedBy { get; set; }
public EventModel() { }
public EventModel(string id)
{
Id = id;