mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
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;
|
|||
|
}
|