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