mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 04:43:40 +01:00
19 lines
504 B
C#
19 lines
504 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Dalamud.Plugin;
|
|
|
|
/// <summary>
|
|
/// Contains data about changes to the list of active plugins.
|
|
/// </summary>
|
|
public interface IActivePluginsChangedEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets the invalidation kind that caused this event to be fired.
|
|
/// </summary>
|
|
PluginListInvalidationKind Kind { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the InternalNames of affected plugins.
|
|
/// </summary>
|
|
IEnumerable<string> AffectedInternalNames { get; }
|
|
}
|