mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-13 10:48:26 -04:00
13 lines
400 B
C#
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);
|
|
}
|
|
}
|