PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaContracts/BindingModels/ProductBindingModel.cs
revengel66 bef04e5d07 com1
2024-02-28 01:32:56 +04:00

13 lines
383 B
C#

using PizzeriaDataModels.Models;
namespace PizzeriaContracts.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();
}
}