mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-17 05:17:42 +01:00
17 lines
445 B
C#
17 lines
445 B
C#
namespace Dalamud.IoC.Internal;
|
|
|
|
/// <summary>
|
|
/// Enum that declares the visibility of an object instance in the service container.
|
|
/// </summary>
|
|
internal enum ObjectInstanceVisibility
|
|
{
|
|
/// <summary>
|
|
/// The object instance is only visible to other internal services.
|
|
/// </summary>
|
|
Internal,
|
|
|
|
/// <summary>
|
|
/// The object instance is visible to all services and plugins.
|
|
/// </summary>
|
|
ExposedToPlugins,
|
|
}
|