PIbd-22_Aleksankina_V.S._Co.../Confectionery/ConfectioneryContracts/ViewModels/PastryViewModel.cs

24 lines
632 B
C#
Raw Normal View History

2024-04-10 01:52:22 +04:00
using ConfectioneryDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.ViewModels
{
public class PastryViewModel : IPastryModel
{
public int Id { get; set; }
[DisplayName("Название изделия")]
public string PastryName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> PastryComponents
{ get; set; } = new();
}
}