18 lines
414 B
C#
Raw Normal View History

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; }
public DateTime Date { get; set; }
public int Count { get; set; }
2023-03-01 16:42:58 +04:00
public double Sum { get; set; }
}
}