13 lines
432 B
Plaintext
13 lines
432 B
Plaintext
using System.Collections.Generic;
|
|
using DTS.Common.Interface;
|
|
using Microsoft.Practices.Prism.Events;
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
// ReSharper disable CheckNamespace
|
|
namespace DTS.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// The selected Test Summary list changed event.
|
|
/// </summary>
|
|
public class ChannelSelectionChangeNotification : CompositePresentationEvent<List<ITestChannel>> { }
|
|
}
|