using ConfectioneryDataModels.Models; using System.ComponentModel; using ConfectioneryContracts.Attributes; namespace ConfectioneryContracts.ViewModels { public class PastryViewModel : IPastryModel { [Column(visible: false)] public int Id { get; set; } [Column(title: "Название кондитерского изделия", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)] public string PastryName { get; set; } = string.Empty; [Column(title: "Цена", width: 80)] public double Price { get; set; } [Column(visible: false)] public Dictionary PastryComponents { get; set; } = new(); } }