aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ViewModels/TimelineEventGroup.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-03-27 19:51:29 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-03-27 19:51:29 +0300
commit953fc4deb9d94a63afe07d66ccf78ff42f54c3bb (patch)
tree9bc9eb73130a7f8bdc82f8f64b81476f78123d52 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ViewModels/TimelineEventGroup.cs
parent69fb24f927bd0954a2765c71b09545df3fbba73c (diff)
downloadTango-953fc4deb9d94a63afe07d66ccf78ff42f54c3bb.tar.gz
Tango-953fc4deb9d94a63afe07d66ccf78ff42f54c3bb.zip
Working on logging module!
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ViewModels/TimelineEventGroup.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ViewModels/TimelineEventGroup.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ViewModels/TimelineEventGroup.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ViewModels/TimelineEventGroup.cs
new file mode 100644
index 000000000..978348fd2
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ViewModels/TimelineEventGroup.cs
@@ -0,0 +1,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; }
+
+ public ObservableCollection<MachinesEvent> Events { get; set; }
+
+ public TimelineEventGroup()
+ {
+ Events = new ObservableCollection<MachinesEvent>();
+ }
+
+ public TimelineEventGroup(String name) : this()
+ {
+ Name = name;
+ }
+ }
+}