Files
Daybreak/Daybreak.Core/Configuration/Options/DSOALOptions.cs
T

14 lines
404 B
C#

using Daybreak.Shared.Attributes;
using System.Text.Json.Serialization;
namespace Daybreak.Configuration.Options;
[OptionsName(Name = "DSOAL")]
[OptionsIgnore]
internal sealed class DSOALOptions
{
[JsonPropertyName(nameof(Enabled))]
[OptionName(Name = "Enabled", Description = "If true, the launcher will also launch DSOAL when launching GuildWars")]
public bool Enabled { get; set; }
}