Wonky.Client/Wonky.Entity/Models/ReportActivity.cs
2022-06-10 13:26:48 +02:00

25 lines
No EOL
840 B
C#

namespace Wonky.Entity.Models;
public class ReportActivity
{
public VisitCompany Company { get; set; }
public string SalesHeadId { 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; } = "";
}
public class VisitCompany
{
public string CompanyId { get; set; } = "";
public string Account { get; set; } = "";
public string Name { get; set; } = "";
public string ZipCity { get; set; } = "";
public string Phone { get; set; } = "";
public string VatNumber { get; set; } = "";
}