PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaDataModels/Models/IProductModel.cs
revengel66 bef04e5d07 com1
2024-02-28 01:32:56 +04:00

10 lines
237 B
C#

namespace PizzeriaDataModels.Models
{
public interface IProductModel : IId
{
string ProductName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> ProductComponents { get; }
}
}