PIbd-22_Razzhivin_A.S._Gift.../GiftShop/GiftShopContracts/ViewModels/ComponentViewModel.cs
2023-04-30 02:34:19 +04:00

20 lines
531 B
C#

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 ComponentViewModel : IComponentModel
{
public int Id { get; set; }
[DisplayName("Название компонента")]
public string ComponentName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Cost { get; set; }
}
}