aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Modules/Tango.FSE.Insights/ML/DetectedAnnomaly.cs
blob: f031179b716110ed7e24676be7c637f40900addd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.FSE.Insights.ML
{
    public class DetectedAnnomaly
    {
        public AnomalyType Type { get; set; }
        public DateTime Time { get; set; }
        public double Value { get; set; }
        public double Score { get; set; }

        public override string ToString()
        {
            return $"{Time} => {Type} => {Value}";
        }
    }
}