ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/ViewModels/ReportOrdersViewModel.cs

18 lines
414 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 ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime Date { get; set; }
public int Count { get; set; }
public double Sum { get; set; }
}
}