// Copyright Epic Games, Inc. All Rights Reserved.
using System.Collections.Generic;
namespace HordeServer.Plugins
{
///
/// Interface for querying the state of plugins on the server
///
public interface IPluginCollection
{
///
/// List of available plugins
///
IReadOnlyList Plugins { get; }
///
/// List of the enabled plugins
///
IReadOnlyList LoadedPlugins { get; }
}
}