SUBD/Sushi/SushiDataModels/ISushiModel.cs

11 lines
222 B
C#

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