2023-03-01 10:48:56 +04:00

10 lines
245 B
C#

namespace ComputersShopDataModels.Models
{
public interface IComputerModel : IId
{
string ComputerName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> ComputerComponents { get; }
}
}