PIbd-23_Bogdanov_D.S._Compu.../AbstractComputerDataModel/Models/IComponentModel.cs

15 lines
280 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopDataModels.Models
{
public interface IComponentModel
{
string ComponentName { get; }
double Cost { get; }
}
}