Coursework_ComputerStore_Li.../ComputerStoreContracts/ViewModels/RequestViewModel.cs

23 lines
587 B
C#
Raw Normal View History

2023-04-05 22:11:17 +04:00
using ComputerStoreDataModels.Models;
using System;
using System.Collections.Generic;
2023-04-05 22:11:17 +04:00
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreContracts.ViewModels
{
2023-04-05 22:11:17 +04:00
public class RequestViewModel : IRequestModel
{
2023-04-05 22:11:17 +04:00
[DisplayName("Request ID")]
public int ID { get; set; }
[DisplayName("Order ID")]
public int OrderID { get; set; }
[DisplayName("Price")]
public double Price { get; set; }
[DisplayName("Count")]
public int Count { get; set; }
}
}