using System.Collections.Generic;
using DTS.Common.Base;
using DTS.Common.Interface;
using Prism.Events;
// ReSharper disable CheckNamespace
namespace DTS.Common.Events
{
///
/// The number of selected Events changed event.
///
public class GraphSelectedEventsNotification : PubSubEvent { }
public class GraphSelectedEventsNotificationArg
{
public System.ComponentModel.BindingList SelectedEvents { get; set; }
///
/// 24417 start pulling apart viewer to allow reuse for PSD reports
///
public IBaseViewModel ParentVM { get; set; }
}
}