PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaDataModels/Models/IPizzaModel.cs
2023-02-16 07:52:03 +03:00

16 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaDataModels.Models
{
public interface IPizzaModel : IId
{
string PizzaName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> PizzaComponents { get; }
}
}