Wonky.Client/Wonky.Entity/DTO/ESalesHeadListView.cs

10 lines
303 B
C#
Raw Normal View History

namespace Wonky.Entity.DTO;
public class ESalesHeadListView
{
public string SalesHeadId { get; set; } = "";
public string ReferenceNumber { get; set; } = "";
public string YourRef { get; set; } = "";
public bool Closed { get; set; }
public string OrderDate { get; set; } = "";
}