mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
13 lines
383 B
C#
13 lines
383 B
C#
using System.Threading.Tasks;
|
|
using BTCPayServer.Client;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace BTCPayServer.Abstractions.Contracts
|
|
{
|
|
public interface IBTCPayServerClientFactory
|
|
{
|
|
Task<BTCPayServerClient> Create(string userId, params string[] storeIds);
|
|
Task<BTCPayServerClient> Create(string userId, string[] storeIds, HttpContext httpRequest);
|
|
}
|
|
}
|