14 lines
306 B
Plaintext
14 lines
306 B
Plaintext
|
|
using System.Collections.ObjectModel;
|
||
|
|
using DTS.Common.Base;
|
||
|
|
using DTS.Common.Interface;
|
||
|
|
|
||
|
|
// ReSharper disable CheckNamespace
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IGraphView : IBaseView
|
||
|
|
{
|
||
|
|
//void SetGraphs(ObservableCollection<ITestDataSeries> graphs);
|
||
|
|
}
|
||
|
|
}
|