10 lines
237 B
C#
10 lines
237 B
C#
|
namespace PizzeriaDataModels.Models
|
|||
|
{
|
|||
|
public interface IProductModel : IId
|
|||
|
{
|
|||
|
string ProductName { get; }
|
|||
|
double Price { get; }
|
|||
|
Dictionary<int, (IComponentModel, int)> ProductComponents { get; }
|
|||
|
}
|
|||
|
}
|