Wonky.Client/Wonky.Entity/DTO/ProductHistoryView.cs
Frede Hundewadt f1deb49d0d wip
2022-06-23 16:56:33 +02:00

11 lines
No EOL
318 B
C#

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