SushiBarBase/SushiBar/AbstractSushiBarContracts/BindingModels/ProductBindingModel.cs

17 lines
442 B
C#
Raw Normal View History

using AbstractSushiBarDataModels.Models;
namespace AbstractSushiBarContracts.BindingModels
{
public class ProductBindingModel : IProductModel
{
public int Id { get; set; }
public string ProductName { get; set; } = string.Empty;
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> ProductComponents
{
get;
set;
} = new();
}
}