Wonky.Client/Wonky.Entity/DTO/ProductInventoryView.cs
Frede Hundewadt 73c2b6da7e build v0.8.22
2022-06-24 12:36:32 +02:00

10 lines
No EOL
235 B
C#

using System.Text.Json.Serialization;
namespace Wonky.Entity.DTO;
public class ProductInventoryView
{
public string Description { get; set; } = "";
public string Sku { get; set; } = "";
public int Quantity { get; set; }
}