Files
DP44/Common/DTS.Common/Events/DTS.Viewer/ViewerTestSummary/ChannelsModificationNotification.cs
2026-04-17 14:55:32 -04:00

13 lines
344 B
C#

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>> { }
}