mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 09:58:13 +01:00
* BTCPay Server Extensions  * cleanup * fix * Polish UI a bit,detect when docker deployment
17 lines
511 B
C#
17 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);
|
|
}
|
|
}
|