PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarDataModels/Models/ISushiModel.cs
2024-02-12 15:00:02 +04:00

16 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
public interface ISushiModel : IId
{
string SushiName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> SushiComponents { get; }
}
}