ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreDataModels/Models/IBuildModel.cs
2024-04-25 22:38:28 +04:00

11 lines
276 B
C#

namespace ComputerHardwareStoreDataModels.Models
{
public interface IBuildModel : IId
{
string Name { get; }
double Price { get; }
int VendorId { get; }
public Dictionary<int, (IComponentModel, int)> BuildComponents { get; }
}
}