Beispiel #1
0
        public async Task <IActionResult> CreateGame([FromBody] GameDTO model)
        {
            await _dictionaryService.CreateGame(model);

            return(Ok());
        }