using System.Collections.Generic; using DTS.Common.Base; using DTS.Common.Interface.TestDefinition; using Prism.Events; // ReSharper disable ClassNeverInstantiated.Global // ReSharper disable CheckNamespace namespace DTS.Common.Events { /// /// The selected Test Summary list changed event. /// public class TestSummaryChangeNotification : PubSubEvent { } public class TestSummaryChangeNotificationArg { public List SummaryList { get; set; } /// /// 24417 start pulling apart viewer to allow reuse for PSD reports /// public IBaseViewModel ParentVM { get; set; } public int TotalSummaryCount { get; set; } } }