Wonky.Client/Wonky.Entity/DTO/ProductInventoryView.cs

8 lines
189 B
C#
Raw Normal View History

2022-06-23 16:56:33 +02:00
namespace Wonky.Entity.DTO;
public class ProductInventoryView
{
public string Name { get; set; } = "";
public string Sku { get; set; } = "";
public int Quantity { get; set; }
}