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; } } }