Wonky.Client/Wonky.Entity/Views/InvoiceLineView.cs

10 lines
281 B
C#
Raw Permalink Normal View History

2022-11-10 12:31:21 +01:00
namespace Wonky.Entity.Views;
public class InvoiceLineView
{
public string Sku { get; set; } = "";
public string Text { get; set; } = "";
2022-11-14 17:06:43 +01:00
public string Qty { get; set; } = "";
public string Price { get; set; } = "";
public string Discount { get; set; } = "";
2022-11-10 12:31:21 +01:00
}