mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-29 18:49:53 +03:00
Save important data about scheduled events to disk
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
parent
e116263a9d
commit
0538cbb164
3 changed files with 43 additions and 7 deletions
12
Data/ScheduledEventData.cs
Normal file
12
Data/ScheduledEventData.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using Remora.Discord.API.Abstractions.Objects;
|
||||
|
||||
namespace Boyfriend.Data;
|
||||
|
||||
public class ScheduledEventData {
|
||||
public DateTimeOffset? ActualStartTime;
|
||||
public GuildScheduledEventStatus Status;
|
||||
|
||||
public ScheduledEventData(GuildScheduledEventStatus status) {
|
||||
Status = status;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue