Exemplo n.º 1
0
        public async Task <IActionResult> GetBannedPlayers()
        {
            var bannedPlayers = await _banRepository.GetBans();

            return(Ok(new BannedPlayerResponse {
                total = bannedPlayers.Count, players = bannedPlayers
            }));
        }