mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
13 lines
349 B
C#
13 lines
349 B
C#
using System.Collections.Generic;
|
|
using MorseCode.ITask;
|
|
|
|
namespace NadekoBot.VotesApi.Services
|
|
{
|
|
public interface IVotesCache
|
|
{
|
|
ITask<IList<Vote>> GetNewTopGgVotesAsync();
|
|
ITask<IList<Vote>> GetNewDiscordsVotesAsync();
|
|
ITask AddNewTopggVote(string userId);
|
|
ITask AddNewDiscordsVote(string userId);
|
|
}
|
|
} |