aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.TFS/State.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-04-23 19:56:48 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-04-23 19:56:48 +0300
commit8046598cb1439b66a8d6e556a61b715fc859a6b0 (patch)
tree5beaa8ca495f48ffbb40174b3569aab18debd6c1 /Software/Visual_Studio/Tango.TFS/State.cs
parent680563266381a80a453ff93214812796fe519fec (diff)
downloadTango-8046598cb1439b66a8d6e556a61b715fc859a6b0.tar.gz
Tango-8046598cb1439b66a8d6e556a61b715fc859a6b0.zip
Implemented TeamFoundationClient components !!!
Diffstat (limited to 'Software/Visual_Studio/Tango.TFS/State.cs')
-rw-r--r--Software/Visual_Studio/Tango.TFS/State.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.TFS/State.cs b/Software/Visual_Studio/Tango.TFS/State.cs
new file mode 100644
index 000000000..dfa905846
--- /dev/null
+++ b/Software/Visual_Studio/Tango.TFS/State.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.TFS
+{
+ public enum State
+ {
+ New,
+ Active,
+ Resolved,
+ Closed
+ }
+}