using DTS.Common.Base;
using Microsoft.Practices.Prism.Events;
// ReSharper disable CheckNamespace
namespace DTS.Common.Events
{
///
/// The number of selected Tests changed event.
///
public class TestSummaryCountNotification : CompositePresentationEvent { }
public class TestSummaryCountNotificationArg
{
public int SummaryCount { get; set; }
///
/// 24417 start pulling apart viewer to allow reuse for PSD reports
///
public IBaseViewModel ParentVM { get; set; }
}
}