namespace ComputerHardwareStoreDataModels.Models { public interface IBuildModel : IId { string Name { get; } double Price { get; } int VendorId { get; } public Dictionary BuildComponents { get; } } }