using ComputerShopDataModels.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ComputerShopContracts.BindingModels { public class ShopBindingModel : IShopModel { public string Name { get; set; } = string.Empty; public string Adress { get; set; } = string.Empty; public DateTime OpeningDate { get; set; } public Dictionary ShopComputers { get; set; } = new(); public int Id { get; set; } } }