Esempio n. 1
0
        public async Task ArtSubmission(string room, string url, string prompt)
        {
            room = room.ToUpper();
            _drawService.GetDrawGame(room)
            .AddArtSubmission(url, prompt);

            await Clients.Group(room).SendAsync("ArtAdded");
        }