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:
authorMikael Mello <mikaelm@lacunasoftware.com>2018-12-12 17:14:11 +0300
committerMikael Mello <mikaelm@lacunasoftware.com>2018-12-12 17:14:11 +0300
commit965bd6d7618c37bdb5235dfd87ee4f45ec699dfc (patch)
tree4f3e789878c01e2b2de9ffcd21be62338cccf2ee /Duplicati/Library/Interface
parent71ac8e8bd2af7b5ead52d4f8176a66caf596c432 (diff)
result-classes: rename properties of RestoreResults to be consistent with BackupResults
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/ResultInterfaces.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/Duplicati/Library/Interface/ResultInterfaces.cs b/Duplicati/Library/Interface/ResultInterfaces.cs
index e040449bd..588726da7 100644
--- a/Duplicati/Library/Interface/ResultInterfaces.cs
+++ b/Duplicati/Library/Interface/ResultInterfaces.cs
@@ -148,14 +148,14 @@ namespace Duplicati.Library.Interface
public interface IRestoreResults : IBasicResults
{
- long FilesRestored { get; }
+ long RestoredFiles { get; }
long SizeOfRestoredFiles { get; }
- long FoldersRestored { get; }
- long SymlinksRestored { get; }
- long FilesPatched { get; }
- long FilesDeleted { get; }
- long FoldersDeleted { get; }
- long SymlinksDeleted { get; }
+ long RestoredFolders { get; }
+ long RestoredSymlinks { get; }
+ long PatchedFiles { get; }
+ long DeletedFiles { get; }
+ long DeletedFolders { get; }
+ long DeletedSymlinks { get; }
IRecreateDatabaseResults RecreateDatabaseResults { get; }
}