mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 20:12:20 +00:00
14 lines
404 B
C#
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; }
|
|
}
|