namespace Tiger.Game.Catalogue; public interface ICatalogueManager { public IDictionary Pages { get; } public IDictionary FeaturedPages { get; } Task LoadPagesAsync(); Task LoadFeaturedPagesAsync(); }