28 lines
849 B
Plaintext
28 lines
849 B
Plaintext
using DTS.Common.Interface.GroupTemplate;
|
|
using Microsoft.Practices.Prism.Events;
|
|
|
|
namespace DTS.Common.Events.GroupTemplates.TemplateChannelList
|
|
{
|
|
|
|
/// <summary>
|
|
/// The GroupTemplateListGroupTemplateSelectedEvent event.
|
|
/// </summary>
|
|
///
|
|
/// <remarks>called when a template is selected.</remarks>
|
|
///
|
|
public class TemplateChannelListRequiredChangedEvent : CompositePresentationEvent<TemplateChannelListRequiredChangeEventArgs> { }
|
|
|
|
|
|
public class TemplateChannelListRequiredChangeEventArgs
|
|
{
|
|
public object Consumer { get; }
|
|
public IGroupTemplateChannel [] Channels { get; }
|
|
|
|
public TemplateChannelListRequiredChangeEventArgs(object o, IGroupTemplateChannel[] channels)
|
|
{
|
|
Consumer = o;
|
|
Channels = channels;
|
|
}
|
|
}
|
|
}
|