Wonky.Client/Wonky.Entity/DTO/WebShopLineDto.cs

10 lines
No EOL
291 B
C#

namespace Wonky.Entity.DTO;
public class WebShopLineDto
{
public string Discount { get; set; } = "";
public string Quantity { get; set; } = "";
public string Sku { get; set; } = "";
public string Text { get; set; } = "";
public string UnitPrice { get; set; } = "";
}