using DTS.Common.Base; using Prism.Events; // ReSharper disable CheckNamespace namespace DTS.Common.Events { /// /// The number of loaded Tests changed event. /// public class GraphSelectedChannelCountNotification : PubSubEvent { } public class GraphSelectedChannelCountNotificationArg { public int SelectedChannelCount { get; set; } /// /// 24417 start pulling apart viewer to allow reuse for PSD reports /// public IBaseViewModel ParentVM { get; set; } } }