aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Dialogs/AddProjectView.xaml.cs
blob: 83856f4e7ab3794480c0515e27ce359ed70d3a33 (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
28
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.Core;

namespace Tango.MachineStudio.Logging.ViewModels
{
    public class TimelineEventGroup : ExtendedObject
    {
        public String Name { get; set; }

        private double _height;
        public double Height
        {
            get { return _height; }
            set { _height = value; RaisePropertyChangedAuto(); }
        }

        public ObservableCollection<MachinesEvent> Events { get; set; }

        public TimelineEventGroup()
        {
            Events = new ObservableCollection<MachinesEvent>();
        }

        public TimelineEventGroup(String name) : this()
        {
            Name = name;
        }
    }
}