PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectionaryContracts/ViewModels/ReportOrdersViewModel.cs

18 lines
471 B
C#
Raw Normal View History

2024-04-08 21:48:15 +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;
2024-04-20 15:51:24 +04:00
public string OrderStatus { get; set; } = string.Empty;
2024-04-08 21:48:15 +04:00
public double Sum { get; set; }
}
}