1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 00:43:36 +03:00
Octobot/src/Data/Reminder.cs
Octol1ttle bbddb3790a
Made guild settings code 10x better
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
2023-07-11 00:28:49 +05:00

7 lines
151 B
C#

namespace Boyfriend.Data;
public struct Reminder {
public DateTimeOffset At;
public string Text;
public ulong Channel;
}