Wonky.Client/Wonky.Entity/Views/NgReportActivityView.cs
Frede Hundewadt 6844e0ce6f wip - v0.8.40
2022-06-27 14:46:51 +02:00

17 lines
610 B
C#

namespace Wonky.Entity.Views;
public class NgReportActivityView
{
public ActivityCompanyView Company { get; set; } = new();
public string SalesHeadId { get; set; } = "";
public string StatusTypeEnum { get; set; } = "";
public bool Closed { get; set; }
public string OrderDate { get; set; } = "";
public string ReferenceNumber { get; set; } = "";
public string YourRef { get; set; } = "";
public decimal OrderAmount { get; set; }
public string VisitTypeEnum { get; set; } = "";
public string Demo { get; set; } = "";
public string SalesResume { get; set; } = "";
}