btcpayserver/BTCPayServer.Abstractions/Contracts/IScopeProvider.cs

8 lines
137 B
C#
Raw Normal View History

#nullable enable
namespace BTCPayServer.Abstractions.Contracts;
public interface IScopeProvider
{
string? GetCurrentStoreId();
}