namespace Inspectron.Epson.PrintServer.Printers.Utils.OrderItems; public class OrderItemsReceipt { public string OrderNumber { get; set; } public string QRInfo { get; set; } public DateTime DateTime { get; set; } public string ClientNotes { get; set; } public List Items { get; set; } = new List(); } public class OrderItem { public int Number { get; set; } public string Name { get; set; } public int Quantity { get; set; } public string Size { get; set; } public List SubItems { get; set; } = new List(); public ItemModifications Modifications { get; set; } public string Comment { get; set; } } public class ItemModifications { public List Removed { get; set; } = new List(); public List Added { get; set; } = new List(); }