IdentityShroud/IdentityShroud.PluginSupport/IPlugin.cs

9 lines
190 B
C#
Raw Normal View History

namespace IdentityShroud.PluginSupport;
/// <summary>
/// Any class that should be discovered when loading a dll should implement IPlugin
/// </summary>
public interface IPlugin
{
}