Wonky.Client/Wonky.Entity/DTO/ESalesHeadView.cs

13 lines
449 B
C#
Raw Permalink Normal View History

namespace Wonky.Entity.DTO;
public class ESalesHeadView
{
public string SalesHeadId { get; set; } = "";
public string OurRef { get; set; } = "";
public string ReferenceNumber { get; set; } = "";
public string YourRef { get; set; } = "";
public string OrderNote { get; set; } = "";
public bool Closed { get; set; }
public string OrderDate { get; set; } = "";
public List<ESalesLineView> Lines { get; set; } = new();
}