11 lines
275 B
C#
11 lines
275 B
C#
namespace ComputerHardwareStoreDataModels.Models
|
|
{
|
|
public interface IBuildModel : IId
|
|
{
|
|
string Name { get; }
|
|
double Price { get; }
|
|
int VendorId { get; }
|
|
public Dictionary<int, (IComponentModel, int)> BuildComponent { get; }
|
|
}
|
|
}
|