PIbd-21_Bakalskaya_E.D._Sus.../ClassLibrary1SushiBarDataModels/ISushiModel.cs

10 lines
231 B
C#

namespace SushiBarDataModels.Models
{
public interface ISushiModel : IId
{
string SushiName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> SushiComponents { get; }
}
}