22 lines
532 B
C#
Raw Normal View History

2023-02-06 11:06:12 +04:00
using PizzeriaDataModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.BindingModels
{
public class PizzaBindingModel : IPrizzaModel
{
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();
}
}