This repository has been archived on 2024-12-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
elliebot/src/EllieBot/Modules/Utility/Quote/IQuoteService.cs

6 lines
145 B
C#
Raw Normal View History

2024-06-19 00:54:39 +12:00
namespace EllieBot.Modules.Utility;
public interface IQuoteService
{
Task<int> DeleteAllAuthorQuotesAsync(ulong guildId, ulong userId);
2024-06-26 23:52:29 +12:00
}