PIbd-21 Potapov N.S. LabWork02 Hard #9

Closed
ns.potapov wants to merge 34 commits from LabWorkHard02 into LabWork02
Showing only changes of commit be4dd3804f - Show all commits

View File

@ -0,0 +1,10 @@
namespace SecuritySystemDataModels.Models
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
DateTime OpeningDate { get; }
Dictionary<int, (ISecureModel, int)> ShopSecures { get; }
}
}