ISEbd-21_Agliullov.D.A._Con.../ConfectioneryDataModels/IPastryModel.cs
2023-02-03 23:25:31 +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; }
}
}