Files
DP44/Common/DTS.Common/.svn/pristine/34/34924de179b469e43ac25a51a954d161a09aa84c.svn-base

15 lines
334 B
Plaintext
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; }
}
}