Files
DP44/Common/DTS.CommonCore/.svn/pristine/16/1618001a74f35861e957d8f140903e7722ee9343.svn-base

25 lines
684 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events.Groups.GroupChannelList
{
/// <summary>
/// The GroupUpdated event.
/// </summary>
///
/// <remarks>called when a template is selected.</remarks>
///
public class GroupChannelsChangedEvent : CompositePresentationEvent<GroupChannelsChangedEventArgs> { }
public class GroupChannelsChangedEventArgs
{
public object Group { get; }
public int ChannelCount { get; }
public GroupChannelsChangedEventArgs(object group, int channelCount)
{
Group = group;
ChannelCount = channelCount;
}
}
}