15 lines
414 B
C#
15 lines
414 B
C#
|
|
using DTS.Common.Base;
|
|||
|
|
using Prism.Events;
|
|||
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// The Selected Group Template changed event.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <remarks>
|
|||
|
|
/// The Selected Group Template changed event is used to ...
|
|||
|
|
/// </remarks>
|
|||
|
|
public class GroupTemplateChangeNotification : PubSubEvent<IBaseModel> { }
|
|||
|
|
}
|