PIbd-21_Putincev_D.M._FoodO.../FoodOrders/FoodOrdersDataModels/Models/IShopModel.cs

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; }
}
}