14 lines
266 B
C#
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; }
|
|||
|
}
|
|||
|
}
|