Wonky.Client/Wonky.Entity/Views/WebShopLIneView.cs

8 lines
200 B
C#

namespace Wonky.Entity.Views;
public class WebShopLineView
{
public string Sku { get; set; } = "";
public string Quantity { get; set; } = "";
public string Text { get; set; } = "";
}