11 lines
231 B
C#
Raw Normal View History


namespace FoodOrdersDataModels.Models
{
2023-02-07 13:00:02 +04:00
public interface IDishModel : IId
{
2023-02-07 13:00:02 +04:00
string DishName { get; }
2023-02-12 10:11:34 +04:00
double Price { get; }
Dictionary<int, (IComponentModel, int)> DishComponents { get; }
}
}