14 lines
337 B
C#
14 lines
337 B
C#
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events.Groups.GroupList
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The GroupTemplateListGroupTemplateSelectedEvent event.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <remarks>called when a template is selected.</remarks>
|
|||
|
|
///
|
|||
|
|
public class GroupListGroupSelectedEvent : PubSubEvent<int[]> { }
|
|||
|
|
}
|