Wonky.Client/Wonky.Entity/Views/OfficeOrderListView.cs
2023-10-18 10:03:30 +02:00

12 lines
No EOL
406 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; } = "";
}