aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Analysis/AnalysisPlotValue.cs
blob: 3c9fe8cab969e48b7d10ca7d93df90706110e2fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.DispenserAnalyzer.UI.Analysis
{
    public class AnalysisPlotValue
    {
        public double X { get; set; }
        public double Y { get; set; }
    }
}