Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

16 lines
325 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace HordeServer.Plugins
{
/// <summary>
/// Base class for plugin server config objects
/// </summary>
public class PluginServerConfig
{
/// <summary>
/// Whether the plugin should be enabled or not
/// </summary>
public bool? Enabled { get; set; }
}
}