forked from EllieBotDevs/elliebot
7 lines
146 B
C#
7 lines
146 B
C#
|
namespace EllieBot.Modules.Utility;
|
|||
|
|
|||
|
public interface IQuoteService
|
|||
|
{
|
|||
|
Task<int> DeleteAllAuthorQuotesAsync(ulong guildId, ulong userId);
|
|||
|
}
|