ISEbd-21_Agliullov.D.A._Con.../ConfectioneryDataModels/IPastryModel.cs

10 lines
239 B
C#
Raw Permalink Normal View History

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