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