PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryContracts/ViewModels/ReportOrdersViewModel.cs

20 lines
410 B
C#
Raw Normal View History

2023-03-28 00:43:46 +04:00
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 DateCreate { get; set; }
public string PastryName { get; set; } = string.Empty;
public double Sum { get; set; }
}
}