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

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; }
}
}