mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
7 lines
151 B
C#
7 lines
151 B
C#
namespace Boyfriend.Data;
|
|
|
|
public struct Reminder {
|
|
public DateTimeOffset At;
|
|
public string Text;
|
|
public ulong Channel;
|
|
}
|