using DinerDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DinerContracts.ViewModels { public class SnackViewModel : ISnackModel { [DisplayName("Название снэка")] public string ProductName { get; set; } = string.Empty; [DisplayName("Цена")] public double Price { get; set; } public Dictionary ProductComponents { get; set; } = new(); public int ID { get; set; } } }