mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 23:54:26 +01:00
initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using BTCPayServer.Abstractions.Contracts;
|
||||
using BTCPayServer.Abstractions.Models;
|
||||
|
||||
namespace BTCPayServer.Plugins.BitcoinWhitepaper
|
||||
{
|
||||
public class BitcoinWhitepaperPlugin: BaseBTCPayServerPlugin
|
||||
{
|
||||
public override string Identifier { get; } = "BTCPayServer.Plugins.BitcoinWhitepaper";
|
||||
public override string Name { get; } = "Bitcoin Whitepaper";
|
||||
public override string Description { get; } = "This makes the Bitcoin whitepaper available on your BTCPay Server.";
|
||||
|
||||
public override IBTCPayServerPlugin.PluginDependency[] Dependencies { get; } =
|
||||
{
|
||||
new() { Identifier = nameof(BTCPayServer), Condition = ">=1.4.0.0" }
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user