Wonky.Client/Wonky.Entity/Views/ProductInventoryView.cs
2022-07-01 10:02:29 +02:00

8 lines
No EOL
198 B
C#

namespace Wonky.Entity.Views;
public class ProductInventoryView
{
public string Description { get; set; } = "";
public string Sku { get; set; } = "";
public int Quantity { get; set; }
}