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