PIbd-22_Razzhivin_A.S._Gift.../GiftShop/GiftShopContracts/ViewModels/GiftViewModel.cs

25 lines
644 B
C#
Raw Permalink Normal View History

2023-04-30 02:34:19 +04:00
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<int, (IComponentModel, int)> GiftComponents
{
get;
set;
} = new();
}
}