12 lines
293 B
C#
Raw Normal View History

2023-03-12 11:43:44 +04:00
namespace FoodOrdersDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOfOpening { get; }
Dictionary<int, (IDishModel, int)> ShopDishes { get; }
2023-03-12 14:01:34 +04:00
int Capacity { get; }
2023-03-12 11:43:44 +04:00
}
}