public async Task <IActionResult> RemoveWatchListEntry([FromBody] Model.WatchlistEntry entry)
        {
            var success = await _watchlistRepo.RemoveWatchlistEntryAsync(Guid.Parse(entry.WatchlistId), Guid.Parse(entry.MediaId));

            if (!success)
            {
                return(NotFound());
            }

            await _watchlistRepo.SaveChangesAsync();

            return(NoContent());
        }