mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
18 lines
381 B
C#
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; }
|
|
}
|
|
}
|