From 8de035510700b265ce6e9903b80f7437d267a723 Mon Sep 17 00:00:00 2001 From: antoc0der <1@DESKTOP-K1L8ND3> Date: Sun, 24 Mar 2024 21:16:40 +0400 Subject: [PATCH] =?UTF-8?q?=D1=87=D1=82=D0=BE=20=D1=87=D1=82=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FlowerShopDataModels/IShopModel.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FlowerShopDataModels/IShopModel.cs b/FlowerShopDataModels/IShopModel.cs index d5ce4d3..b7e23d3 100644 --- a/FlowerShopDataModels/IShopModel.cs +++ b/FlowerShopDataModels/IShopModel.cs @@ -12,8 +12,9 @@ namespace FlowerShopDataModels.Models string ShopName { get; } string Address { get; } DateTime DateOpen { get; } - Dictionary ShopFlowers { get; } + int MaxCapacity { get; } + Dictionary ShopFlowers { get; } } }