Wartestatus für Tickets;

This commit is contained in:
2026-05-27 11:12:19 +02:00
parent 8f4b17bee2
commit 10c5368c64
7 changed files with 211 additions and 9 deletions
+1
View File
@@ -16,6 +16,7 @@ public class Ticket
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public TicketPriority Priority { get; set; } = TicketPriority.Medium;
public bool IsCompleted { get; set; } = false;
public bool IsWaitingForFeedback { get; set; } = false;
// Relationen
public List<TicketComment> Comments { get; set; } = new();