mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
12 lines
289 B
C#
12 lines
289 B
C#
using NadekoBot.Core.Services.Database.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Core.Services.Database.Repositories
|
|
{
|
|
public interface IPollsRepository : IRepository<Poll>
|
|
{
|
|
IEnumerable<Poll> GetAllPolls();
|
|
void RemovePoll(int id);
|
|
}
|
|
}
|