using ConfectioneryDataModels.Models; using System.ComponentModel; 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 PastryComponents { get; set; } = new(); } }