Files
btcpayserver/BTCPayServer.Abstractions/Contracts/IScopeProvider.cs
2022-06-29 23:18:02 +09:00

8 lines
137 B
C#

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