aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/FileSystemHandlerStatus.cs
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2020-03-16 15:17:30 +0200
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2020-03-16 15:17:30 +0200
commite5d8de8b48f1600c9c5718771ad5c2f26be0be88 (patch)
treefe902a8613a8f0e353beaa81888b13823c86130e /Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/FileSystemHandlerStatus.cs
parentc1ea90442c5e6f0e000d69c8b2a0b0a81dfa6130 (diff)
parent3bc7ddaf3b52eeae095e82e062156dde37e4805b (diff)
downloadTango-e5d8de8b48f1600c9c5718771ad5c2f26be0be88.tar.gz
Tango-e5d8de8b48f1600c9c5718771ad5c2f26be0be88.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/FileSystemHandlerStatus.cs')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/FileSystemHandlerStatus.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/FileSystemHandlerStatus.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/FileSystemHandlerStatus.cs
new file mode 100644
index 000000000..fe3a030a1
--- /dev/null
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/FileSystemHandlerStatus.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.FSE.Common.FileSystem
+{
+ public enum FileSystemHandlerStatus
+ {
+ Pending,
+ Downloading,
+ Uploading,
+ Failed,
+ Aborted,
+ Completed
+ }
+}