diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-04-23 19:56:48 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-04-23 19:56:48 +0300 |
| commit | 8046598cb1439b66a8d6e556a61b715fc859a6b0 (patch) | |
| tree | 5beaa8ca495f48ffbb40174b3569aab18debd6c1 /Software/Visual_Studio/Tango.TFS/State.cs | |
| parent | 680563266381a80a453ff93214812796fe519fec (diff) | |
| download | Tango-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.cs | 16 |
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 + } +} |
