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

10 lines
291 B
C#
Raw Normal View History

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