using System; using System.Threading; using System.Threading.Tasks; namespace BTCPayServer.Services { public interface IBackgroundJobClient { void Schedule(Func act, TimeSpan scheduledIn); } }