aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Project/MachineTechViewProjectTab.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-09-26 11:07:32 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-09-26 11:07:32 +0300
commit3e4bec71b356231134ccb1b52d8faf264c57c6a1 (patch)
tree0cdd247af78fcd9b6c34bd85698f5cff44ed4e17 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Project/MachineTechViewProjectTab.cs
parentaeb14d2d27e479a88cb638c91be77454d250e19b (diff)
downloadTango-3e4bec71b356231134ccb1b52d8faf264c57c6a1.tar.gz
Tango-3e4bec71b356231134ccb1b52d8faf264c57c6a1.zip
Working on new tech module tabs.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Project/MachineTechViewProjectTab.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Project/MachineTechViewProjectTab.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Project/MachineTechViewProjectTab.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Project/MachineTechViewProjectTab.cs
new file mode 100644
index 000000000..c86e1ae55
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Project/MachineTechViewProjectTab.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.MachineStudio.Technician.TechItems;
+
+namespace Tango.MachineStudio.Technician.Project
+{
+ public class MachineTechViewProjectTab
+ {
+ public String Name { get; set; }
+ public List<TechItem> Items { get; set; }
+
+ public MachineTechViewProjectTab()
+ {
+ Items = new List<TechItem>();
+ }
+ }
+}