20 lines
416 B
C#
20 lines
416 B
C#
using ComputerStoreDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ComputerStoreContracts.BindingModels
|
|
{
|
|
public class ComponentBindingModel : IComponentModel
|
|
{
|
|
public int ID { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
|
}
|
|
}
|