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