ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreDataModels/Models/IBuildModel.cs

11 lines
280 B
C#
Raw Normal View History

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