mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 15:44:26 +01:00
14 lines
417 B
C#
14 lines
417 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 = ">=1.12.0" }
|
|
};
|
|
}
|
|
}
|