mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
9 lines
232 B
C#
9 lines
232 B
C#
namespace TeamOctolings.Octobot.Data;
|
|
|
|
public struct Reminder
|
|
{
|
|
public DateTimeOffset At { get; init; }
|
|
public string Text { get; init; }
|
|
public ulong ChannelId { get; init; }
|
|
public ulong MessageId { get; init; }
|
|
}
|