aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/Insights/InsightsReadyFrame.cs
blob: b4ad8ec503043fcc1c74f846f6a8e386e963098b (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.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Insights;
using Tango.PMR.Insights;

namespace Tango.FSE.Common.Insights
{
    public class InsightsReadyFrame
    {
        public InsightsFrame Frame { get; private set; }
        public InsightsMonitors Monitors { get; private set; }

        public InsightsReadyFrame(InsightsFrame frame)
        {
            Frame = frame;
            Monitors = frame.ToInsightsMonitors();
        }

        public override string ToString()
        {
            return $"{Frame.Time}: {Monitors.ToString()}";
        }
    }
}