aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Modules/Tango.FSE.Diagnostics/Project/DiagnosticsProjectTab.cs
blob: d50a6aa0d8a07e87691301f404c4cf8358c11af7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Tango.Core;
using Tango.FSE.Diagnostics.Project.Widgets;

namespace Tango.FSE.Diagnostics.Project
{
    public class DiagnosticsProjectTab : ExtendedObject
    {
        public String Name { get; set; }
        public List<DiagnosticsProjectTabColumnDefinition> Columns { get; set; }
        public List<DiagnosticsProjectTabRowDefinition> Rows { get; set; }
        public ObservableCollection<DiagnosticsWidget> Widgets { get; set; }

        public DiagnosticsProjectTab()
        {
            Columns = new List<DiagnosticsProjectTabColumnDefinition>();
            Rows = new List<DiagnosticsProjectTabRowDefinition>();
            Widgets = new ObservableCollection<DiagnosticsWidget>();
        }
    }
}