ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/ViewModels/ReportGroupOrdersViewModel.cs
2023-03-08 16:05:07 +04:00

18 lines
419 B
C#

using ConfectioneryDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.ViewModels
{
public class ReportGroupOrdersViewModel
{
public int Id { get; set; }
public DateTime Date { get; set; }
public int Count { get; set; }
public double Sum { get; set; }
}
}