btcpayserver/BTCPayServer/Contracts/ISyncSummaryProvider.cs
2020-07-28 22:48:51 +02:00

11 lines
158 B
C#

namespace BTCPayServer.Contracts
{
public interface ISyncSummaryProvider
{
bool AllAvailable();
string Partial { get; }
}
}