// Copyright (c) Nate McMaster.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace BTCPayServer.Plugins.Dotnet
{
///
/// Represents the method that will handle the event.
///
/// The object sending the event
/// Data about the event.
public delegate void PluginReloadedEventHandler(object sender, PluginReloadedEventArgs eventArgs);
///
/// Provides data for the event.
///
public class PluginReloadedEventArgs : EventArgs
{
///
/// Initializes .
///
///
public PluginReloadedEventArgs(PluginLoader loader)
{
Loader = loader;
}
///
/// The plugin loader
///
public PluginLoader Loader { get; }
}
}