25 lines
684 B
Plaintext
25 lines
684 B
Plaintext
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|