17 lines
420 B
C#
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; }
|
|
}
|
|
}
|