btcpayserver/BTCPayServer.Abstractions/Contracts/ISyncSummaryProvider.cs

19 lines
381 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace BTCPayServer.Abstractions.Contracts
2020-07-28 22:48:51 +02:00
{
public interface ISyncSummaryProvider
{
bool AllAvailable();
string Partial { get; }
IEnumerable<ISyncStatus> GetStatuses();
}
public interface ISyncStatus
{
public string CryptoCode { get; set; }
public bool Available { get; }
2020-07-28 22:48:51 +02:00
}
}