mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
* BTCPay Server Extensions  * cleanup * fix * Polish UI a bit,detect when docker deployment
18 lines
511 B
C#
18 lines
511 B
C#
using System;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace BTCPayServer.Contracts
|
|
{
|
|
public interface IBTCPayServerExtension
|
|
{
|
|
public string Identifier { get;}
|
|
string Name { get; }
|
|
Version Version { get; }
|
|
string Description { get; }
|
|
|
|
void Execute(IApplicationBuilder applicationBuilder, IServiceProvider applicationBuilderApplicationServices);
|
|
void Execute(IServiceCollection applicationBuilder);
|
|
}
|
|
}
|