PIbd-21 Potapov N.S. LabWork01 Hard #5

Closed
ns.potapov wants to merge 20 commits from LabWorkHard01 into LabWork01
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; }
}
}