15 lines
No EOL
333 B
C#
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);
|
|
} |