13 lines
344 B
Plaintext
13 lines
344 B
Plaintext
using System.Collections.Generic;
|
|
using DTS.Common.Interface;
|
|
using Prism.Events;
|
|
// ReSharper disable CheckNamespace
|
|
namespace DTS.Common.Events
|
|
{
|
|
|
|
/// <summary>
|
|
/// The number of selected Graphs changed event.
|
|
/// </summary>
|
|
public class ChannelsModificationNotification : PubSubEvent<List<ITestChannel>> { }
|
|
}
|