PIbd-21_Barsukov_P.O._Compu.../ComputersShop/ComputersShopContracts/BindingModels/ComponentBindingModel.cs

17 lines
420 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ComputersShopDataModels.Models;
namespace ComputersShopContracts.BindingModels
{
public class ComponentBindingModel: IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}