using System; namespace DTS.Common.Interactivity { public interface IInteractionRequestAware { /// /// The passed when the interaction request was raised. /// INotification Notification { get; set; } /// /// An that can be invoked to finish the interaction. /// Action FinishInteraction { get; set; } } }