Exemple #1
0
        public async Task OnGet()
        {
            var shows = await _podcastService.GetShows(50, null);

            FeaturedShows = shows?.Where(s => s.IsFeatured).ToArray();
        }