using System.Collections.Generic; using MorseCode.ITask; namespace NadekoBot.VotesApi.Services { public interface IVotesCache { ITask> GetNewTopGgVotesAsync(); ITask> GetNewDiscordsVotesAsync(); ITask AddNewTopggVote(string userId); ITask AddNewDiscordsVote(string userId); } }