diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-11-25 16:38:54 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-11-25 16:38:54 +0200 |
| commit | ca18248f6203d7567a2276ec76360aedd4cfda0b (patch) | |
| tree | e2bd460350caf6056fc579fd96736028e3ab68ff /Software/Visual_Studio/PPC/Tango.PPC.Common | |
| parent | fcf154eb2ae88dcf1003ea6bd14c91cab1a616e9 (diff) | |
| download | Tango-ca18248f6203d7567a2276ec76360aedd4cfda0b.tar.gz Tango-ca18248f6203d7567a2276ec76360aedd4cfda0b.zip | |
Working on Backup/Restore...
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupMode.cs | 12 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupRestoreProgressEventArgs.cs | 16 |
2 files changed, 28 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupMode.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupMode.cs new file mode 100644 index 000000000..5e2f6d168 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupMode.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Common.BackupRestore +{ + class BackupMode + { + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupRestoreProgressEventArgs.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupRestoreProgressEventArgs.cs new file mode 100644 index 000000000..402db821a --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupRestoreProgressEventArgs.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Common.BackupRestore +{ + public class BackupRestoreEventArgs : EventArgs + { + public bool IsIntermediate { get; set; } + public double Progress { get; set; } + public double MaxProgress { get; set; } + public BackupRestoreStage Stage { get; set; } + } +} |
