PIbd - 21 Bakalskaya E.D. LabWork01 HARD #8

Closed
ekallin wants to merge 8 commits from LabWork11 into LabWork01
Showing only changes of commit 973afb771a - Show all commits

View File

@ -0,0 +1,12 @@
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; }
}
}