aboutsummaryrefslogtreecommitdiffstats
path: root/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/00560efc06a300191b09f9345249babb
stat options
Period:
Authors:

Commits per author per week (path 'Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/00560efc06a300191b09f9345249babb')

AuthorW25 2026W26 2026W27 2026W28 2026Total
Total00000
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;
        }
    }
}