public async Task <ObservableCollection <FeaturedGame> > GetFeaturedGames()
        {
            if (FeaturedGames == null)
            {
                FeaturedGames = await _twitchService.GetFeaturedChannels();
            }

            return(FeaturedGames);
        }