11 lines
263 B
C#
11 lines
263 B
C#
|
namespace FoodOrdersDataModels.Models
|
|||
|
{
|
|||
|
public interface IShopModel : IId
|
|||
|
{
|
|||
|
string ShopName { get; }
|
|||
|
string Address { get; }
|
|||
|
DateTime DateOfOpening { get; }
|
|||
|
Dictionary<int, (IDishModel, int)> ShopDishes { get; }
|
|||
|
}
|
|||
|
}
|