14 lines
266 B
C#
Raw Permalink Normal View History

2024-05-24 01:56:34 +04:00
namespace SushiBarDataModels.Models
{
public interface IDishModel : IId
{
string DishName { get; }
string Category { get; }
double Price { get; }
Dictionary<int, (IIngredientModel, int)> DishIngredients { get; }
}
}