Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Shared/Plugins/PluginServerConfig.cs
2025-05-18 13:04:45 +08: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; }
}
}