Added order image and description upload

This commit is contained in:
2025-11-30 10:48:08 +01:00
parent b005975c81
commit 1bce61267a
13 changed files with 974 additions and 2 deletions

View File

@@ -6,6 +6,8 @@ public class Order
public string OrderCode { get; set; } = string.Empty;
public string CreatorName { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string? AdditionalInfo { get; set; }
public string? ImagePath { get; set; }
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime? ClosedAt { get; set; }
public bool IsClosed { get; set; } = false;