Wonky.Client/Wonky.Entity/DTO/ESalesLineView.cs
2023-07-22 17:39:35 +02:00

9 lines
No EOL
232 B
C#

namespace Wonky.Entity.DTO;
public class ESalesLineView
{
public string SalesLineId { get; set; } = "";
public string Sku { get; set; } = "";
public int Qty { get; set; }
public string Text { get; set; } = "";
}