1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 00:43:36 +03:00
Octobot/Data/Reminder.cs
Octol1ttle d46b08df08
Add /remind command
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
2023-07-08 16:07:37 +05:00

9 lines
182 B
C#

using Remora.Rest.Core;
namespace Boyfriend.Data;
public struct Reminder {
public DateTimeOffset RemindAt;
public string Text;
public Snowflake Channel;
}