Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.BitcoinWhitepaper/BitcoinWhitepaperPlugin.cs
2023-01-17 14:29:22 +01: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 = ">=1.7.4" }
};
}
}