ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/BindingModels/SushiBindingModel.cs

18 lines
421 B
C#
Raw Normal View History

2024-02-09 15:31:49 +04:00
using SushiBarDataModels.Models;
namespace SushiBarContracts.BindingModels
{
public class SushiBindingModel : ISushiModel
{
public int Id { get; set; }
public string SushiName { get; set; } = string.Empty;
public double Price { get; set; }
public Dictionary<int, (IIngredientModel, int)> SushiIngredients
{
get;
set;
} = new();
}
}