Wonky.Client/Wonky.Entity/DTO/SalesReportDto.cs
2022-05-28 16:27:54 +02:00

29 lines
848 B
C#

namespace Wonky.Entity.DTO;
public class SalesReportDto
{
public string ActivityDate { get; set; } = "";
public string DayTypeEnum { get; set; } = "";
public string Comment { get; set; } = "";
//
public long KmStart { get; set; }
public long KmFinished { get; set; }
public int Distance { get; set; }
public int DistancePrivate { get; set; }
//
public int VisitNewCount { get; set; }
public int VisitRecallCount { get; set; }
public int DemoNewCount { get; set; }
public int DemoRecallCount { get; set; }
public int SalesNewCount { get; set; }
public int SalesRecallCount { get; set; }
public int SasCount { get; set; }
//
public decimal SumSalesDay { get; set; }
public decimal SumSasDay { get; set; }
public decimal SumTotalDay { get; set; }
}