Wonky.Client/Wonky.Entity/DTO/ReportActivityDto.cs
Frede Hundewadt 5fd50be7b1 wip
2022-06-11 15:51:33 +02:00

16 lines
547 B
C#

namespace Wonky.Entity.DTO;
public class ReportActivityDto
{
public ReportVisitDto Company { get; set; } = new();
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; } = "";
}