Files
nadekobot/src/NadekoBot/Services/Database/Repositories/IReminderRepository.cs

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);
}
}