Wonky.Client/Wonky.Entity/Views/OfficeOrderListView.cs
2023-11-03 12:15:17 +01:00

14 lines
No EOL
505 B
C#

namespace Wonky.Entity.Views;
public class OfficeOrderListView
{
public string CompanyId { get; set; } = "";
public string CompanyName { get; set; } = "";
public string Account { get; set; } = "";
public string SalesHeadId { get; set; } = "";
public string OrderDate { get; set; } = "";
public string SalesRep { get; set; } = "";
public string CountryCode { get; set; } = "";
public string ESalesNumber { get; set; } = "";
public string CreatedBy { get; set; } = "";
}