Generate Challonge

This commit is contained in:
2018-10-07 18:06:38 +02:00
parent 681deda3d2
commit 70b5ea54f7
5 changed files with 16 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Threading.Tasks;
using ChallongeCSharpDriver.Core.Results;
namespace LaDOSE.Business.Interface
{
@@ -7,6 +8,6 @@ namespace LaDOSE.Business.Interface
{
Task<Boolean> GetLastTournament();
string GetLastTournamentMessage();
Task<Tuple<int, string>> CreateTournament(string name, string url);
Task<TournamentResult> CreateTournament(string name, string url);
}
}