mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 20:12:20 +00:00
11 lines
335 B
C#
11 lines
335 B
C#
using Daybreak.Shared.Attributes;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "Event Notifier")]
|
|
internal sealed class EventNotifierOptions
|
|
{
|
|
[OptionName(Name = "Enabled", Description = "If set to true, Daybreak will notify the user of any event on startup")]
|
|
public bool Enabled { get; set; } = true;
|
|
}
|