28 lines
626 B
C#
28 lines
626 B
C#
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events.GroupTemplates.CustomChannels
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Event to inform of custom channel import status
|
|||
|
|
/// </summary>
|
|||
|
|
/// <remarks>
|
|||
|
|
///
|
|||
|
|
/// </remarks>
|
|||
|
|
public class CustomChannelImportEvent : PubSubEvent<CustomChannelImportEventArgs> { }
|
|||
|
|
|
|||
|
|
public class CustomChannelImportEventArgs
|
|||
|
|
{
|
|||
|
|
public enum Status
|
|||
|
|
{
|
|||
|
|
Done
|
|||
|
|
}
|
|||
|
|
public Status ImportStatus { get; }
|
|||
|
|
|
|||
|
|
public CustomChannelImportEventArgs(Status status)
|
|||
|
|
{
|
|||
|
|
ImportStatus = status;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|