ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryContracts/ViewModels/PastryViewModel.cs

21 lines
622 B
C#
Raw Permalink Normal View History

2024-02-15 22:55:26 +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();
}
}