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