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