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

11 lines
No EOL
325 B
C#

namespace Wonky.Entity.DTO;
public class ProductHistoryView
{
public string DeliverDate { 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; }
}