namespace LittleShop.DTOs; /// /// DTO containing counts for each order status/workflow state. /// Used for displaying badge counts in the Orders Index view. /// public class OrderStatusCountsDto { public int PendingPaymentCount { get; set; } public int RequiringActionCount { get; set; } // PaymentReceived orders needing acceptance public int ForPackingCount { get; set; } // Accepted orders ready for packing public int DispatchedCount { get; set; } public int OnHoldCount { get; set; } public int DeliveredCount { get; set; } public int CancelledCount { get; set; } }