using System; using System.Collections.Generic; using System.Threading.Tasks; using LaDOSE.Business.Provider.SmashProvider; using LaDOSE.Entity; using LaDOSE.Entity.Challonge; namespace LaDOSE.Business.Interface { public interface ISmashProvider { Task GetEvent(string slug); Task> GetResults(ref List tournaments); Task> GetSets(ref List tournaments); Task ParseEvent(string slug); Task GetTournament(string sludge); } }