14 lines
332 B
C#
14 lines
332 B
C#
using Prism.Events;
|
|
|
|
namespace DTS.Common.Events.GroupTemplates.CustomChannels
|
|
{
|
|
/// <summary>
|
|
/// Event to inform app that it should mark itself busy or available
|
|
/// </summary>
|
|
/// <remarks>
|
|
///
|
|
/// </remarks>
|
|
public class CustomChannelExportFileSetEvent : PubSubEvent<string> { }
|
|
|
|
}
|