PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryDataModels/Models/IPastryModel.cs
2024-04-07 08:20:37 +04:00

10 lines
239 B
C#

namespace ConfectioneryDataModels.Models
{
public interface IPastryModel : IId
{
string PastryName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> PastryComponents { get; }
}
}