SUBD_Aleikin/Restaurant/RestaurantContracts/ViewModels/ProductViewModel.cs
Артём Алейкин e52b239c08 BusinessLogic,
Contracts,
DataModels,
View(пока пусто)
2023-05-02 22:51:41 +04:00

27 lines
710 B
C#

using RestaurantDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RestaurantContracts.ViewModels
{
public class ProductViewModel : IProductModel
{
public int Id { get; set; }
[DisplayName("Вид продукта")]
public string Type { get; set; } = string.Empty;
[DisplayName("Цена")]
public int Price { get; set; }
[DisplayName("Количество продуктов")]
public int Count { get; set; }
public Dictionary<int, (IComponentModel, int)> ProductComponents { get; set; } = new();
}
}