18 lines
494 B
C#
18 lines
494 B
C#
using System;
|
|
|
|
namespace DTS.Common.Interactivity
|
|
{
|
|
public interface IInteractionRequestAware
|
|
{
|
|
/// <summary>
|
|
/// The <see cref="INotification"/> passed when the interaction request was raised.
|
|
/// </summary>
|
|
INotification Notification { get; set; }
|
|
|
|
/// <summary>
|
|
/// An <see cref="Action"/> that can be invoked to finish the interaction.
|
|
/// </summary>
|
|
Action FinishInteraction { get; set; }
|
|
}
|
|
}
|