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; } }