Wonky.Client/Wonky.Entity/Views/InvoiceLineView.cs
2022-11-14 17:06:43 +01:00

10 lines
No EOL
281 B
C#

namespace Wonky.Entity.Views;
public class InvoiceLineView
{
public string Sku { get; set; } = "";
public string Text { get; set; } = "";
public string Qty { get; set; } = "";
public string Price { get; set; } = "";
public string Discount { get; set; } = "";
}