mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 10:18:27 -04:00
12 lines
371 B
C#
12 lines
371 B
C#
using NadekoBot.Core.Services.Database.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Core.Services.Database.Repositories
|
|
{
|
|
public interface IReminderRepository : IRepository<Reminder>
|
|
{
|
|
IEnumerable<Reminder> GetIncludedReminders(IEnumerable<ulong> guildIds);
|
|
IEnumerable<Reminder> RemindersFor(ulong userId, int page);
|
|
}
|
|
}
|