27 lines
736 B
C#
27 lines
736 B
C#
using ElectronicsShopDataModels.Enums;
|
||
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 ProductViewModel : IProductModel {
|
||
public int ID { get; set; }
|
||
|
||
public int CostItemID { get; set; }
|
||
|
||
[DisplayName("Название продукта")]
|
||
public string ProductName { get; set; } = string.Empty;
|
||
|
||
[DisplayName("Стоимость продукта")]
|
||
public double Price { get; set; }
|
||
|
||
[DisplayName("Статус оплаты")]
|
||
public PaymeantOption PayOption { get; set; } = PaymeantOption.Неизвестно;
|
||
}
|
||
}
|