Wonky.Client/Wonky.Entity/Views/NgSalesReportListView.cs
2022-06-19 17:42:13 +02:00

16 lines
No EOL
569 B
C#

namespace Wonky.Entity.Views;
public class NgSalesReportListView
{
public string ReportId { get; set; } = "";
public string Name { get; set; } = "";
public string Description { get; set; } = "";
public string ReportDate { get; set; } = "";
public string DayTypeEnum { get; set; } = "";
public string FromDateTime { get; set; } = "";
public string ToDateTime { get; set; } = "";
public decimal Turnover { get; set; }
public int VisitCount { get; set; }
public int DemoCount { get; set; }
public int SaleCount { get; set; }
}