namespace Wonky.Entity.Views; public class ReportItemLine { /// /// Line description /// public string Description { get; set; } = ""; /// /// Line item SKU /// public string Sku { get; set; } = ""; /// /// Line item quantity /// public int Quantity { get; set; } /// /// Line item discount /// public decimal Discount { get; set; } /// /// Line item price /// public decimal Price { get; set; } /// /// Line sum /// public decimal LineSum { get; set; } }