Files
DP44/Common/DTS.Common/Interface/DTS.Viewer/Graphs/ITestDataViewModel.cs

15 lines
334 B
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Windows.Input;
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface ITestDataViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Tab View.
/// </summary>
ITestDataView View { get; set; }
ITestDataSeries Model { get; set; }
}
}