16 lines
299 B
C#

namespace FoodOrdersDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
int MaxCountDishs { get; }
DateTime DateOpening { get; }
Dictionary<int, (IDishModel, int)> ShopDishs { get; }
}
}