using DTS.Common.Base; namespace DTS.Common.Interface { public interface IGraphViewModel : IBaseViewModel { /// /// Gets the Tab View. /// IGraphView View { get; } ITestDataSeriesView DataSeriesView { get; set; } } }