PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaDataModels/Models/IProductModel.cs

10 lines
237 B
C#
Raw Normal View History

2024-02-28 01:32:56 +04:00
namespace PizzeriaDataModels.Models
{
public interface IProductModel : IId
{
string ProductName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> ProductComponents { get; }
}
}