Wonky.Client/Wonky.Entity/Views/NgActivityReportView.cs
Frede Hundewadt 6685aad32d wip
2022-06-29 13:25:45 +02:00

18 lines
659 B
C#

namespace Wonky.Entity.Views;
public class NgActivityReportView
{
public ActivityCompanyView Company { get; set; } = new();
public string SalesHeadId { get; set; } = "";
public string OfficeNote { 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; } = "";
}