using CarRepairShopDataModels; using CarRepairShopDataModels.Models; namespace CarRepairShopContracts.BindingModels { public class ShopBindingModel : IShopModel { public int Id { get; set; } public string ShopName { get; set; } public string Address { get; set; } public DateTime DateOpen { get; set; } public int MaxCapacity { get; set; } public Dictionary ShopRepairs { get; set; } = new(); } }