mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
16 lines
387 B
C#
16 lines
387 B
C#
using Daybreak.Shared.Attributes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsSynchronizationIgnore]
|
|
[OptionsIgnore]
|
|
public sealed class GuildWarsScreenPlacerOptions
|
|
{
|
|
[JsonPropertyName(nameof(Enabled))]
|
|
public bool Enabled { get; set; }
|
|
|
|
[JsonPropertyName(nameof(DesiredScreen))]
|
|
public int DesiredScreen { get; set; }
|
|
}
|