Wonky.Client/Wonky.Entity/Views/NgSalesReportListView.cs
Frede Hundewadt 6844e0ce6f wip - v0.8.40
2022-06-27 14:46:51 +02:00

17 lines
No EOL
614 B
C#

namespace Wonky.Entity.Views;
public class NgSalesReportListView
{
public string ReportId { get; set; } = "";
public string UserId { 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; }
}