mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
10 lines
200 B
C#
10 lines
200 B
C#
using Daybreak.Shared.Attributes;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsIgnore]
|
|
public sealed class GuildWarsVersionCheckerOptions
|
|
{
|
|
public bool IsEnabled { get; set; } = true;
|
|
}
|