10 lines
231 B
C#
10 lines
231 B
C#
|
namespace PizzeriaDataModels.Models
|
|||
|
{
|
|||
|
public interface IPizzaModel : IId
|
|||
|
{
|
|||
|
string PizzaName { get; }
|
|||
|
double Price { get; }
|
|||
|
Dictionary<int, (IComponentModel, int)> PizzaComponents { get; }
|
|||
|
}
|
|||
|
}
|