25 lines
649 B
C#
25 lines
649 B
C#
using Prism.Events;
|
|
|
|
namespace DTS.Common.Events.Groups.GroupChannelList
|
|
{
|
|
|
|
/// <summary>
|
|
/// The GroupUpdated event.
|
|
/// </summary>
|
|
///
|
|
/// <remarks>called when a template is selected.</remarks>
|
|
///
|
|
public class GroupChannelsChangedEvent : PubSubEvent<GroupChannelsChangedEventArgs> { }
|
|
|
|
public class GroupChannelsChangedEventArgs
|
|
{
|
|
public object Group { get; }
|
|
|
|
public int ChannelCount { get; }
|
|
public GroupChannelsChangedEventArgs(object group, int channelCount)
|
|
{
|
|
Group = group;
|
|
ChannelCount = channelCount;
|
|
}
|
|
}
|
|
} |