mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
11 lines
250 B
C#
11 lines
250 B
C#
|
using System.Threading.Tasks;
|
||
|
using BTCPayServer.Client;
|
||
|
|
||
|
namespace BTCPayServer.Abstractions.Contracts
|
||
|
{
|
||
|
public interface IBTCPayServerClientFactory
|
||
|
{
|
||
|
Task<BTCPayServerClient> Create(string userId, params string[] storeIds);
|
||
|
}
|
||
|
}
|