using System.Windows.Input; using DTS.Common.Base; namespace DTS.Common.Interface { public interface ITestDataViewModel : IBaseViewModel { /// /// Gets the Tab View. /// ITestDataView View { get; set; } ITestDataSeries Model { get; set; } } }