using GiftShopDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GiftShopContracts.ViewModels { public class GiftViewModel : IGiftModel { public int Id { get; set; } [DisplayName("Название изделия")] public string GiftName { get; set; } = string.Empty; [DisplayName("Цена")] public double Price { get; set; } public Dictionary GiftComponents { get; set; } = new(); } }