mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-29 20:04:18 +01:00
8 lines
156 B
C#
8 lines
156 B
C#
namespace BTCPayServer.Services
|
|
{
|
|
public interface IFeeProviderFactory
|
|
{
|
|
IFeeProvider CreateFeeProvider(BTCPayNetworkBase network);
|
|
}
|
|
}
|