using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AbstractFoodOrdersDataModels.Models { public interface IShopModel : IId { string ShopName { get; } string ShopAdress { get; } DateTime OpeningDate { get; } Dictionary ShopDishes { get; } } }