Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.BitcoinWhitepaper/BitcoinWhitepaperPlugin.cs
Kukks 9b90e10b66 wip
2024-10-18 09:46:16 +02:00

14 lines
416 B
C#

using BTCPayServer.Abstractions.Contracts;
using BTCPayServer.Abstractions.Models;
namespace BTCPayServer.Plugins.BitcoinWhitepaper
{
public class BitcoinWhitepaperPlugin: BaseBTCPayServerPlugin
{
public override IBTCPayServerPlugin.PluginDependency[] Dependencies { get; } =
{
new() { Identifier = nameof(BTCPayServer), Condition = ">=2.0.0" }
};
}
}