Wonky.Client/Wonky.Entity/Views/NgSalesReportListView.cs

17 lines
614 B
C#
Raw Normal View History

2022-06-19 17:41:54 +02:00
namespace Wonky.Entity.Views;
public class NgSalesReportListView
{
2022-06-19 17:42:13 +02:00
public string ReportId { get; set; } = "";
2022-06-27 14:46:51 +02:00
public string UserId { get; set; } = "";
2022-06-19 17:42:13 +02:00
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; }
2022-06-19 17:41:54 +02:00
}