using System.Collections.Generic; using System.Collections.ObjectModel; using DTS.Common.Base; using DTS.Common.Interface.TestDefinition; namespace DTS.Common.Interface { public interface ITestSummaryListViewModel : IBaseViewModel { /// /// Gets the Shell View. /// ITestSummaryListView TestSummaryListView { get; } ObservableCollection TestSummaryList { get; set; } List SelectedTestSummaryList { get; set; } void PublishSelectedTestSummaryList(); } }