Wonky.Client/Wonky.Entity/DTO/ReportActivityDto.cs

17 lines
554 B
C#
Raw Normal View History

2022-06-10 18:11:38 +02:00
namespace Wonky.Entity.DTO;
2022-05-28 15:37:27 +02:00
2022-06-10 18:11:38 +02:00
public class ReportActivityDto
2022-05-28 15:37:27 +02:00
{
2022-06-10 18:11:38 +02:00
public ReportVisitDto ReportVisitDto { get; set; } = new();
2022-05-28 15:37:27 +02:00
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; } = "";
}