10 lines
185 B
C#
10 lines
185 B
C#
using System;
|
|
|
|
namespace DTS.Common.Interactivity
|
|
{
|
|
public interface IInteractionRequest
|
|
{
|
|
event EventHandler<InteractionRequestedEventArgs> Raised;
|
|
}
|
|
}
|