CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/ViewModels/PaymentViewModel.cs

22 lines
496 B
C#
Raw Normal View History

2024-05-22 23:00:35 +04:00
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.ViewModels
{
public class PaymentViewModel : IPaymentModel {
public int ID { get; set; }
public int ProductID { get; set; }
public int OrderID { get; set; }
[DisplayName("Cумма оплаты продукта")]
public double SumPayment { get; set; }
}
}