print server with new concept
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user