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

11 lines
259 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; }
}
}