Files
DP44/Common/DTS.Common/Interactivity/IInteractionRequestAware.cs
2026-04-17 14:55:32 -04:00

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