using System; namespace ComputerShopWpf.Models { public class Order { public int OrderId { get; set; } public DateTime OrderDate { get; set; } public string Status { get; set; } public decimal TotalCost { get; set; } public int ClientId { get; set; } public string ClientName { get; set; } public string ClientPhone { get; set; } public string ClientEmail { get; set; } public int EmployeeId { get; set; } public string EmployeeName { get; set; } } }