PIbd-22_Shabunov_O.A._SushiBar/SushiBarDataModels/Models/IDishModel.cs
2024-05-24 01:56:34 +04:00

14 lines
266 B
C#

namespace SushiBarDataModels.Models
{
public interface IDishModel : IId
{
string DishName { get; }
string Category { get; }
double Price { get; }
Dictionary<int, (IIngredientModel, int)> DishIngredients { get; }
}
}