Wonky.Client/Wonky.Entity/Views/NgActivityReportView.cs

19 lines
659 B
C#
Raw Normal View History

2022-06-14 19:00:21 +02:00
namespace Wonky.Entity.Views;
2022-06-29 13:25:45 +02:00
public class NgActivityReportView
2022-06-14 19:00:21 +02:00
{
public ActivityCompanyView Company { get; set; } = new();
public string SalesHeadId { get; set; } = "";
2022-06-29 13:25:45 +02:00
public string OfficeNote { get; set; } = "";
2022-06-27 14:46:51 +02:00
public string StatusTypeEnum { get; set; } = "";
2022-06-14 19:00:21 +02:00
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; } = "";
}