17 lines
356 B
C#

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<int, (IDishModel, int)> ShopDishes { get; }
}
}