SUBD/Sushi/SushiDataModels/ISushiModel.cs

11 lines
222 B
C#
Raw Normal View History

2024-04-04 03:47:27 +04:00
namespace SushiDataModels
{
public interface ISushiModel : IId
{
string SushiName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> SushiComponents { get; }
}
}