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