Files
2026-04-17 14:55:32 -04:00

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);
}
}