namespace FlowerShopDataModels.Models { public interface IShopModel : IId { string ShopName { get; } string Address { get; } Dictionary Flowers { get; } DateTime DateOpening { get; } } }