PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarDataModels/Models/IShopModel.cs

12 lines
294 B
C#
Raw Normal View History

2023-02-13 23:13:13 +04:00
namespace SushiBarDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpening { get; }
Dictionary<int, (ISushiModel, int)> ListSushi { get; }
int MaxCountSushi { get; }
2023-02-13 23:13:13 +04:00
}
}