18 lines
440 B
C#
Raw Normal View History

2024-05-24 01:56:34 +04:00
using SushiBarDataModels.Models;
namespace SushiBarContracts.BindingModels
2024-05-15 21:37:18 +04:00
{
2024-05-24 01:56:34 +04:00
public class DishBindingModel : IDishModel
2024-05-15 21:37:18 +04:00
{
2024-05-16 17:13:55 +04:00
public int Id { get; set; }
2024-05-15 21:37:18 +04:00
public string DishName { get; set; } = string.Empty;
public string Category { get; set;} = string.Empty;
2024-05-24 01:56:34 +04:00
public double Price { get; set; }
public Dictionary<int, (IIngredientModel, int)> DishIngredients { get; set; } = new();
2024-05-15 21:37:18 +04:00
}
}