Wonky.Client/Wonky.Entity/Views/WebShopOrderView.cs

13 lines
410 B
C#

namespace Wonky.Entity.Views;
public class WebShopOrderView
{
public string OurRef { get; set; } = "";
public string ReferenceNumber { get; set; } = "";
public string YourRef { get; set; } = "";
public string OrderNote { get; set; } = "";
public bool Closed { get; set; }
public string OrderDate { get; set; } = "";
public List<WebShopLineView> Lines { get; set; } = new();
}