Wonky.Client/Wonky.Entity/DTO/ProductHistoryView.cs
2022-06-24 14:38:24 +02:00

11 lines
No EOL
326 B
C#

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