Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.BitcoinWhitepaper/BitcoinWhitepaperPlugin.cs
2023-01-16 13:13:18 +01:00

18 lines
710 B
C#

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" }
};
}
}