19 lines
565 B
Plaintext
19 lines
565 B
Plaintext
using System.Collections.ObjectModel;
|
|
using DTS.Common.Base;
|
|
using DTS.Common.Classes.Viewer.TestMetadata;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface IGraphChannelViewModel : IBaseViewModel
|
|
{
|
|
/// <summary>
|
|
/// Gets the Tab View.
|
|
/// </summary>
|
|
IGraphChannelView View { get; }
|
|
ObservableCollection<ITestChannel> GraphChannelList { get; set; }
|
|
ObservableCollection<ITestChannel> SelectedGraphChannelList { get; set; }
|
|
TestChannel SelectedGraphChannel { get; set; }
|
|
|
|
}
|
|
}
|