Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Duplicati/Library/Interface/ResultInterfaces.cs')
-rw-r--r--Duplicati/Library/Interface/ResultInterfaces.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/Duplicati/Library/Interface/ResultInterfaces.cs b/Duplicati/Library/Interface/ResultInterfaces.cs
index 6c6a21784..a2aa45dba 100644
--- a/Duplicati/Library/Interface/ResultInterfaces.cs
+++ b/Duplicati/Library/Interface/ResultInterfaces.cs
@@ -20,8 +20,8 @@ using System.Collections.Generic;
namespace Duplicati.Library.Interface
{
- public interface IBasicResults
- {
+ public interface IBasicResults
+ {
DateTime BeginTime { get; }
DateTime EndTime { get; }
TimeSpan Duration { get; }
@@ -29,22 +29,22 @@ namespace Duplicati.Library.Interface
IEnumerable<string> Errors { get; }
IEnumerable<string> Warnings { get; }
IEnumerable<string> Messages { get; }
- }
+ }
public interface IBackendStatstics
{
- long RemoteCalls { get; }
- long BytesUploaded { get; }
- long BytesDownloaded { get; }
- long FilesUploaded { get; }
- long FilesDownloaded { get; }
- long FilesDeleted { get; }
- long FoldersCreated { get; }
- long RetryAttempts { get; }
+ long RemoteCalls { get; }
+ long BytesUploaded { get; }
+ long BytesDownloaded { get; }
+ long FilesUploaded { get; }
+ long FilesDownloaded { get; }
+ long FilesDeleted { get; }
+ long FoldersCreated { get; }
+ long RetryAttempts { get; }
}
- public interface IParsedBackendStatistics : IBackendStatstics
- {
+ public interface IParsedBackendStatistics : IBackendStatstics
+ {
long UnknownFileSize { get; }
long UnknownFileCount { get; }
long KnownFileCount { get; }
@@ -54,7 +54,7 @@ namespace Duplicati.Library.Interface
long TotalQuotaSpace { get; }
long FreeQuotaSpace { get; }
long AssignedQuotaSpace { get; }
- }
+ }
public interface IListResultFile
{