using System.Threading.Tasks; using BTCPayServer.Client; namespace BTCPayServer.Abstractions.Contracts { public interface IBTCPayServerClientFactory { Task Create(string userId, params string[] storeIds); } }