10 lines
245 B
C#
10 lines
245 B
C#
|
namespace ComputersShopDataModels.Models
|
|||
|
{
|
|||
|
public interface IComputerModel : IId
|
|||
|
{
|
|||
|
string ComputerName { get; }
|
|||
|
double Price { get; }
|
|||
|
Dictionary<int, (IComponentModel, int)> ComputerComponents { get; }
|
|||
|
}
|
|||
|
}
|