1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-05-13 09:16:07 +03:00

Add /remind command

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2023-07-08 16:07:37 +05:00
parent 20ffbbaafb
commit d46b08df08
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF
18 changed files with 990 additions and 1295 deletions

View file

@ -14,4 +14,5 @@ public class MemberData {
public ulong Id { get; }
public DateTimeOffset? BannedUntil { get; set; }
public List<Snowflake> Roles { get; set; } = new();
public List<Reminder> Reminders { get; } = new();
}

9
Data/Reminder.cs Normal file
View file

@ -0,0 +1,9 @@
using Remora.Rest.Core;
namespace Boyfriend.Data;
public struct Reminder {
public DateTimeOffset RemindAt;
public string Text;
public Snowflake Channel;
}