ISEbd-21_Vasina_E.S._Comput.../ComputersShop/ComputersShopContracts/BindingModels/ComponentBindingModel.cs
2023-03-01 10:48:56 +04:00

13 lines
306 B
C#

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; }
}
}