PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/BindingModels/ComponentBindingModel.cs

17 lines
422 B
C#
Raw Normal View History

2024-02-05 20:36:39 +04:00
using ComputersShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.BindingModels
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}