aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Project/MachineTechViewProjectTab.cs
blob: c86e1ae55e53b47d016e9ed04024a85c6b951746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>();
        }
    }
}