mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
14 lines
413 B
C#
14 lines
413 B
C#
using Daybreak.Shared.Attributes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "GWToolbox")]
|
|
[OptionsIgnore]
|
|
internal sealed class ToolboxOptions
|
|
{
|
|
[JsonPropertyName(nameof(Enabled))]
|
|
[OptionName(Name = "Enabled", Description = "If true, Daybreak will also launch GWToolboxdll when launching GuildWars")]
|
|
public bool Enabled { get; set; }
|
|
}
|