btcpayserver/BTCPayServer.Abstractions/Contracts/ISyncSummaryProvider.cs
2021-05-19 13:07:28 +09:00

18 lines
381 B
C#

using System.Collections.Generic;
namespace BTCPayServer.Abstractions.Contracts
{
public interface ISyncSummaryProvider
{
bool AllAvailable();
string Partial { get; }
IEnumerable<ISyncStatus> GetStatuses();
}
public interface ISyncStatus
{
public string CryptoCode { get; set; }
public bool Available { get; }
}
}