Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IChallongeProvider.cs
2018-10-07 18:06:38 +02:00

13 lines
341 B
C#

using System;
using System.Threading.Tasks;
using ChallongeCSharpDriver.Core.Results;
namespace LaDOSE.Business.Interface
{
public interface IChallongeProvider
{
Task<Boolean> GetLastTournament();
string GetLastTournamentMessage();
Task<TournamentResult> CreateTournament(string name, string url);
}
}