elliebot/src/Ellie.Bot.Common/Services/IRemindService.cs
Emotion 12557ea609
Updated a few things
Signed-off-by: Emotion <emotion@emotionchild.com>
2023-08-23 23:22:42 +12:00

15 lines
No EOL
333 B
C#

#nullable disable
using Ellie.Services.Database.Models;
namespace Ellie.Modules.Utility.Services;
public interface IRemindService
{
Task AddReminderAsync(ulong userId,
ulong targetId,
ulong? guildId,
bool isPrivate,
DateTime time,
string message,
ReminderType reminderType);
}