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; }
List<AnalysisPlotValue> PlotValues { get; set; }
ObservableCollection<DataPoint> Points { get; set; }
}
}