using ComputerShopDataModels.Models;

namespace ComputerShopContracts.BindingModels
{
	public class AssemblyBindingModel : IAssemblyModel
	{
		public int Id { get; set; }

		public int UserId { get; set; }

		public string AssemblyName { get; set; } = string.Empty;

		public double Price { get; set; }

		public string Category { get; set; } = string.Empty;

		public Dictionary<int, IComponentModel> AssemblyComponents { get; set; } = new();

		public Dictionary<int, int> Test { get; set; } = new();
	}
}