2023-03-01 23:10:43 +04:00
|
|
|
|
using ConfectioneryDataModels.Enums;
|
|
|
|
|
using System;
|
2023-03-01 16:42:58 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportOrdersViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2023-03-02 04:28:14 +04:00
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
|
public int Count { get; set; }
|
2023-03-01 16:42:58 +04:00
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|