PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryDataModels/IPastryModel.cs

10 lines
239 B
C#
Raw Normal View History

2024-03-13 14:54:56 +04:00
namespace ConfectioneryDataModels.Models
{
public interface IPastryModel : IId
{
string PastryName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> PastryComponents { get; }
}
}