Wonky.Client/Wonky.Entity/Views/InvoiceLineView.cs
2022-11-10 12:31:21 +01:00

10 lines
No EOL
262 B
C#

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