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

13 lines
400 B
C#

using System.Collections.Generic;
using NadekoBot.Core.Services.Database.Models;
namespace NadekoBot.Core.Services.Database.Repositories
{
public interface ICustomReactionRepository : IRepository<CustomReaction>
{
IEnumerable<CustomReaction> ForId(ulong id);
int ClearFromGuild(ulong id);
CustomReaction GetByGuildIdAndInput(ulong? guildId, string input);
}
}