28 lines
856 B
C#
28 lines
856 B
C#
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<OrderItem> Items { get; set; } = new List<OrderItem>();
|
|
}
|
|
|
|
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<string> SubItems { get; set; } = new List<string>();
|
|
public ItemModifications Modifications { get; set; }
|
|
public string Comment { get; set; }
|
|
}
|
|
|
|
public class ItemModifications
|
|
{
|
|
public List<string> Removed { get; set; } = new List<string>();
|
|
public List<string> Added { get; set; } = new List<string>();
|
|
}
|