Wonky.Client/Wonky.Entity/Views/OfficeOrderListView.cs

12 lines
406 B
C#
Raw Normal View History

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