PIbd-21_Bakalskaya_E.D._Sus.../SushiBarDataModels/IShopModel.cs

13 lines
302 B
C#

using SushiBarDataModels.Models;
namespace SushiBarDataModels
{
public interface IShopModel : IId
{
string Name { get; set; }
string Address { get; set; }
DateTime DateOpening { get; set; }
Dictionary<int, (ISushiModel, int)> ShopSushis{ get; set; }
}
}