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