using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ComputerShopContracts.ViewModels
{
    public class ReportOrderViewModel
    {
        public int Id { get; set; }
        public DateTime DateCreate { get; set; }
        public string ComputerName { get; set; } = string.Empty;
        public double Sum { get; set; }
        public String Status { get; set; } = string.Empty;
    }
}