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

11 lines
231 B
C#
Raw Normal View History

namespace FoodOrdersDataModels.Models
{
public interface IDishModel : IId
{
string DishName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> DishComponents { get; }
}
}