14 lines
306 B
C#
14 lines
306 B
C#
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);
|
|
}
|
|
}
|