mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 20:12:20 +00:00
12 lines
326 B
C#
12 lines
326 B
C#
using Daybreak.Shared.Attributes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
[OptionsIgnore]
|
|
[OptionsSynchronizationIgnore]
|
|
internal sealed class GuildwarsExecutableOptions
|
|
{
|
|
[JsonPropertyName(nameof(ExecutablePaths))]
|
|
public List<string> ExecutablePaths { get; set; } = [];
|
|
}
|