This commit is contained in:
Kwoth
2023-09-05 23:22:31 +00:00
30 changed files with 21096 additions and 41 deletions

View File

@@ -1,4 +1,6 @@
#nullable disable
using NadekoBot.Services.Database.Models;
namespace NadekoBot.Modules.Utility.Services;
public interface IRemindService
@@ -8,5 +10,6 @@ public interface IRemindService
ulong? guildId,
bool isPrivate,
DateTime time,
string message);
string message,
ReminderType reminderType);
}