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