mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-05-13 17:26:08 +03:00
fix(reminders): convert Reminder fields to properties to allow for serialization
This commit is contained in:
parent
67d44ff835
commit
d2eb62e658
1 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ namespace Octobot.Data;
|
||||||
|
|
||||||
public struct Reminder
|
public struct Reminder
|
||||||
{
|
{
|
||||||
public DateTimeOffset At;
|
public DateTimeOffset At { get; init; }
|
||||||
public string Text;
|
public string Text { get; init; }
|
||||||
public ulong Channel;
|
public ulong Channel { get; init; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue