using NadekoBot.Core.Services.Database.Models; using System.Collections.Generic; namespace NadekoBot.Core.Services.Database.Repositories { public interface IReminderRepository : IRepository { IEnumerable GetIncludedReminders(IEnumerable guildIds); IEnumerable RemindersFor(ulong userId, int page); } }