forked from TeamInklings/Octobot
7 lines
159 B
C#
7 lines
159 B
C#
namespace Boyfriend.Data;
|
|
|
|
public struct Reminder {
|
|
public DateTimeOffset RemindAt;
|
|
public string ReminderText;
|
|
public ulong ReminderChannel;
|
|
}
|