using System;
namespace DTS.Common.Interactivity
{
public class InteractionRequestedEventArgs : EventArgs
{
///
/// Constructs a new instance of
///
///
///
public InteractionRequestedEventArgs(INotification context, Action callback)
{
Context = context;
Callback = callback;
}
///
/// Gets the context for a requested interaction.
///
public INotification Context { get; private set; }
///
/// Gets the callback to execute when an interaction is completed.
///
public Action Callback { get; private set; }
}
}