2024-04-10 15:15:05 +04:00
|
|
|
|
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; }
|
2024-04-24 05:46:48 +04:00
|
|
|
|
public string OrderStatus { get; set; } = string.Empty;
|
2024-04-10 15:15:05 +04:00
|
|
|
|
}
|
|
|
|
|
}
|