Files
DP44/Common/DTS.CommonCore/.svn/pristine/7d/7d66cc656213ad64b91acc5b86768509b9a1173e.svn-base

19 lines
565 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}