namespace Wonky.Entity.DTO; public class ProductHistoryView { public string DeliverDate { get; set; } = ""; public string Name { get; set; } = ""; public string Sku { get; set; } = ""; public int Quantity { get; set; } public decimal Price { get; set; } public decimal Discount { get; set; } }