This repository has been archived on 2025-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Octobot/Data/ScheduledEventData.cs
Octol1ttle e883e143eb
Add xmldocs.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
2023-06-11 14:12:17 +05:00

16 lines
515 B
C#

using Remora.Discord.API.Abstractions.Objects;
namespace Boyfriend.Data;
/// <summary>
/// Stores information about scheduled events. This information is not provided by the Discord API.
/// </summary>
/// <remarks>This information is stored on disk as a JSON file.</remarks>
public class ScheduledEventData {
public DateTimeOffset? ActualStartTime;
public GuildScheduledEventStatus Status;
public ScheduledEventData(GuildScheduledEventStatus status) {
Status = status;
}
}