Added order item comment

This commit is contained in:
2025-11-30 16:05:31 +01:00
parent 7098530cf4
commit 90306e8944
8 changed files with 492 additions and 21 deletions

View File

@@ -8,6 +8,7 @@ public class OrderItem
public string ParticipantName { get; set; } = string.Empty;
public string? ParticipantEmail { get; set; }
public int Quantity { get; set; } = 1;
public string? Comments { get; set; }
public DateTime OrderedAt { get; set; } = DateTime.UtcNow;
public Order? Order { get; set; }