elliebot/src/EllieBot/Modules/Utility/Quote/IQuoteService.cs
2024-06-26 23:52:29 +12:00

6 lines
No EOL
145 B
C#

namespace EllieBot.Modules.Utility;
public interface IQuoteService
{
Task<int> DeleteAllAuthorQuotesAsync(ulong guildId, ulong userId);
}