PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarDataModels/Models/ISushiModel.cs
2023-01-31 15:23:18 +04:00

10 lines
233 B
C#

namespace SushiBarDataModels.Models
{
public interface ISushiModel : IId
{
string SushiName { get; }
double Price { get; }
Dictionary<int, (IIngredientModel, int)> SushiIngredients { get; }
}
}