Coursework_ComputerStore_Li.../ComputerStoreContracts/ViewModels/RequestViewModel.cs
2023-04-07 20:46:13 +04:00

24 lines
587 B
C#

using ComputerStoreDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreContracts.ViewModels
{
public class RequestViewModel : IRequestModel
{
[DisplayName("Request ID")]
public int ID { get; set; }
[DisplayName("Order ID")]
public int OrderID { get; set; }
[DisplayName("Price")]
public double Price { get; set; }
[DisplayName("PC ID")]
public int PCID { get; set; }
}
}