blob: 5203828e58937a7634e03ad9e3ddd4934352f32b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using OxyPlot;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.DispenserAnalyzer.UI.Analysis
{
public interface IAnalyzerResult
{
AnalyzerResultValue Result { get; set; }
bool BackgroundMode { get; set; }
//List<AnalysisPlotValue> PlotValues { get; set; }
//AnalyzerResultChartData RangeToCountChart { get; set; }
//AnalyzerResultChartData RangeToTimeChart { get; set; }
}
}
|