Files
DP44/Common/DTS.Common/Interface/DTS.Viewer/Graphs/ITestDataSeriesViewModel.cs
2026-04-17 14:55:32 -04:00

18 lines
490 B
C#

using System.Windows.Input;
using DTS.Common.Base;
// ReSharper disable CheckNamespace
namespace DTS.Common.Interface
{
public interface ITestDataSeriesViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Tab View.
/// </summary>
ITestDataSeriesView View { get; set; }
ITestDataSeries Model { get; set; }
void MoveCursor(object sender, KeyEventArgs e);
string CurrentCursorValues { get; set; }
}
}