Challonge Provider can create tournament

This commit is contained in:
2018-10-07 15:15:11 +02:00
parent 9a9d4c7053
commit 681deda3d2
17 changed files with 245 additions and 18 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Threading.Tasks;
namespace LaDOSE.Business.Interface
{
public interface IChallongeProvider
{
Task<Boolean> GetLastTournament();
string GetLastTournamentMessage();
Task<Tuple<int, string>> CreateTournament(string name, string url);
}
}