ISEbd-22_Zenina_E.S._Comput.../ComputersShop/ComputersShopContracts/BindingModels/ComponentBindingModel.cs
2024-05-03 20:17:56 +04:00

19 lines
423 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; }
}
}