mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
179520a211
This allows plugins to create custom dbcontexts, which would be namespaced in the scheme with a prefix. Migrations are supported too and the table would be prefixed too
14 lines
405 B
C#
14 lines
405 B
C#
using BTCPayServer.Abstractions.Models;
|
|
using BTCPayServer.Models;
|
|
|
|
namespace BTCPayServer.Plugins
|
|
{
|
|
public class BTCPayServerPlugin: BaseBTCPayServerPlugin
|
|
{
|
|
public override string Identifier { get; } = nameof(BTCPayServer);
|
|
public override string Name { get; } = "BTCPay Server";
|
|
public override string Description { get; }= "BTCPay Server core system";
|
|
|
|
}
|
|
}
|