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