Files
DP44/Common/DTS.Common/.svn/pristine/9e/9e2e7d14c4b84305fb4968a45f14c8118176fe36.svn-base
2026-04-17 14:55:32 -04:00

18 lines
494 B
Plaintext

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; }
}
}