From be4dd3804f6efde7b61e7de2f7665429d2d33461 Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Mon, 11 Mar 2024 09:55:49 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B0=20=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB=D1=8C=20=D0=BC?= =?UTF-8?q?=D0=B0=D0=B3=D0=B0=D0=B7=D0=B8=D0=BD=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SecuritySystemDataModels/Models/IShopModel.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 SecuritySystem/SecuritySystemDataModels/Models/IShopModel.cs diff --git a/SecuritySystem/SecuritySystemDataModels/Models/IShopModel.cs b/SecuritySystem/SecuritySystemDataModels/Models/IShopModel.cs new file mode 100644 index 0000000..da3eecc --- /dev/null +++ b/SecuritySystem/SecuritySystemDataModels/Models/IShopModel.cs @@ -0,0 +1,10 @@ +namespace SecuritySystemDataModels.Models +{ + public interface IShopModel : IId + { + string Name { get; } + string Address { get; } + DateTime OpeningDate { get; } + Dictionary ShopSecures { get; } + } +}