14 lines
307 B
Plaintext
14 lines
307 B
Plaintext
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface IGraphViewModel : IBaseViewModel
|
|
{
|
|
/// <summary>
|
|
/// Gets the Tab View.
|
|
/// </summary>
|
|
IGraphView View { get; }
|
|
ITestDataSeriesView DataSeriesView { get; set; }
|
|
}
|
|
}
|