19 lines
459 B
C#
19 lines
459 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BarContracts.ViewModels
|
|
{
|
|
public class ReportOrdersViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime DateCreate { get; set; }
|
|
public string CocktailName { get; set; } = string.Empty;
|
|
public double Sum { get; set; }
|
|
public string Status { get; set; } = string.Empty;
|
|
}
|
|
|
|
}
|