Wonky.Client/Wonky.Entity/DTO/ESalesLineView.cs

9 lines
232 B
C#
Raw Normal View History

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